CSS border-top-left-radius
Property
The border-top-left-radius
property in CSS is used to round the top-left corner of an element. It controls the curvature of the top-left corner, allowing you to create rounded corners for that specific corner.
1. Syntax
Value | Description |
---|---|
length | Specifies the radius of the top-left corner, such as px , em , rem , etc. |
% | Specifies the radius as a percentage of the element's width or height. |
inherit | Inherits the top-left radius from the parent element. |
2. Example – Using border-top-left-radius
✅ The top-left corner of the <div>
will have a radius of 20px, giving it a rounded appearance.
3. Example – Using Percentages for border-top-left-radius
✅ The top-left corner of the <div>
will have a rounded appearance, and the radius will be 50% of the element's height, making the corner more elliptical.
4. Example – Rounding Multiple Corners
You can round multiple corners at once. For instance, rounding the top-left and bottom-right corners:
✅ The top-left and bottom-right corners of the <div>
will have 20px rounded corners, while the other two corners remain square.
5. Best Practices
✔ Use border-top-left-radius
when you want to round the top-left corner specifically.
✔ For rounding multiple corners, you can use the shorthand border-radius
property.
✔ When working with responsive designs, using percentages can help maintain proportional rounding, especially when the element's dimensions change.