What happens when we set border-radius to these values and height and width are set to 100px?

The bottom-right corner disappears, creating a curved line from the top-right to the bottom-leftThe top-right corner is rounded slightlyParagraphs have a rounded top-left cornerParagraphs have a bottom margin

The bottom-right corner disappears, creating a curved line from the top-right to the bottom-left.

<html><head><style>p{border-radius: 0 0 100px 0;width: 100px;height: 100px; background-color: lightBlue;
}</style></head><body><h3>Geometry Visual Aids</h3><p>Quarter of a circle</p></body>
</html>]]>