Quiz Question 1 of 5
How will the browser interpret the following border-radius
declaration?
border-radius: 6px/12px;
Choose the correct answer below:
-
A
This wonβt work. The slash is not an acceptable character in
border-radius
values. -
B
All four corners will have 6px horizontal radius and 12px vertical radius
-
C
The top left and bottom right corners will have 6px
border-radius
, while the top right and bottom left corners will have 12pxborder-radius
. -
D
The box will have 6px radius at all four corners. If a
box-shadow
is present, the shadow will have 12px radius at all four corners.