Home > Article > Web Front-end > How to set div to rounded corners in css
The way to set the div to have rounded corners in css is to set the border-radius attribute for the div, such as [border-radius:5px]. The border-radius property is a composite property that allows us to add rounded borders to elements.
The operating environment of this article: windows10 system, css 3, thinkpad t480 computer.
We can make the corners rounded by adding the border-radius attribute. The specific code is as follows:
Effect:
The border-radius attribute is a composite attribute that can specify up to four border -*- radius attributes. This attribute allows you to add rounded borders to elements!
Example:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> div { border:2px solid #a1a1a1; padding:10px 40px; background:#dddddd; width:300px; border-radius:25px; } </style> </head> <body> <div>border-radius 属性允许您为元素添加圆角边框! </div> </body> </html>
Display results:
##Related video tutorial:The above is the detailed content of How to set div to rounded corners in css. For more information, please follow other related articles on the PHP Chinese website!