CSS border radius generator provides a tool for generating css border radius, You can enter the corner values in four directions to view the effect and generate CSS codes.
property | describe |
---|---|
border-radius | defines the radius of the element's corners |
border-top-left-radius | property defines the radius of the top-left corner. |
border-top-right-radius | property defines the radius of the top-right corner. |
border-bottom-right-radius | property defines the radius of the bottom-right corner. |
border-bottom-left-radius | property defines the radius of the bottom-left corner. |
Our tool uses the first form, which is a shorthand for the other syntaxes.for example
border-radius: 10px 10px 10px 10px;
first value applies to top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner.