Rounded Borders
CSS Rounded Borders
An element’s borders can be rounded by using the border-radius property:
Normal border
Round border
Rounder border
Roundest border
Example
p {
border: 2px solid red;
border-radius: 5px;
}
More Examples
Every top boundary property in a single declaration
This example shows how to set all the properties for the top border in a single declaration using a shortcut property.
Decide on the bottom border’s style.
This example shows you how to change the bottom border’s style.
Determine the left border’s width.
This example shows you how to adjust the left border’s width.
Decide on the four borders’ color.
The setting of the four borders’ colors is shown in this example. It is capable of having one to four colors.
Choose the right border’s color.
This example shows you how to change the right border’s color.
All CSS Border Properties
Property | Description |
---|---|
border | Sets all the border properties in one declaration |
border-bottom | Sets all the bottom border properties in one declaration |
border-bottom-color | Sets the color of the bottom border |
border-bottom-style | Sets the style of the bottom border |
border-bottom-width | Sets the width of the bottom border |
border-color | Sets the color of the four borders |
border-left | Sets all the left border properties in one declaration |
border-left-color | Sets the color of the left border |
border-left-style | Sets the style of the left border |
border-left-width | Sets the width of the left border |
border-radius | Sets all the four border-*-radius properties for rounded corners |
border-right | Sets all the right border properties in one declaration |
border-right-color | Sets the color of the right border |
border-right-style | Sets the style of the right border |
border-right-width | Sets the width of the right border |
border-style | Sets the style of the four borders |
border-top | Sets all the top border properties in one declaration |
border-top-color | Sets the color of the top border |
border-top-style | Sets the style of the top border |
border-top-width | Sets the width of the top border |
border-width | Sets the width of the four borders |