在css3中,div的圆角属性“border-radius”是css3的新增属性,该属性是一个简写属性,用于设置四个角的圆角样式,语法为“border-radius:左上角圆角值 右上角圆角值 右下角圆角值 左下角圆角值;”。
本教程操作环境:windows10系统、CSS3&&HTML5版、Dell G3电脑。
div的圆角属性是border-radius,是css3的新增属性。
border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。
提示:该属性允许您为元素添加圆角边框!
语法为;
border-radius: 1-4 length|% / 1-4 length|%;
注释:按此顺序设置每个 radii 的四个值。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left 相同。
属性可能的值如下:
示例如下:
<html> <head> <style> div { text-align:center; border:2px solid #a1a1a1; padding:10px 40px; background:#dddddd; width:350px; border-radius:25px; -moz-border-radius:25px; /* 老的 Firefox */ } </style> </head> <body> <div>border-radius 属性允许您向元素添加圆角。</div> </body> </html>
输出结果:
(学习视频分享:css视频教程)
以上是div圆角属性是css3新增属性吗的详细内容。更多信息请关注PHP中文网其他相关文章!