The border-radius property with a single value applies that radius to all four corners equally.
Option B has three values, which is valid syntax but redundant as it also applies 10px to all corners. Option B has five values which is invalid. Option B misses the unit px.
border-radius: 50%;
Setting border-radius: 50% makes the corners fully rounded. If the box is a square, it becomes a circle. If the box is a rectangle, it becomes an ellipse.
The border-radius shorthand with four values applies to corners in this order: top-left, top-right, bottom-right, bottom-left.
Option A sets top-left and bottom-right to 15px, others to 0.
border-radius: 20px; to an inline element like <span> with background color, what will happen?Inline elements only wrap their content area. Applying border-radius rounds the corners of their background and border but does not change their box size or display behavior.
border-radius values, what accessibility issue might occur?Large border-radius on focus outlines can cause the outline to appear detached or too thin, making it difficult for keyboard users to see which element is focused.