CSS: Borders & Border Radius

Learn how to style borders and create rounded corners using CSS.

Border Properties

CSS provides several properties to style borders:

Border Radius

The border-radius property allows you to create rounded corners:

Example: Borders & Border Radius

/* Example */
div {
    border: 2px solid #000;
    border-radius: 10px;
}
        

This example creates a box with a solid black border and rounded corners.

Practice

Try experimenting with border properties:

Continue Learning

Quick Check

Which property creates rounded corners on elements?