CSS3 border-radius 属性
定义和用法
border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。
提示:该属性允许您为元素添加圆角边框!
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 ????<meta charset="UTF-8"> 5 ????<title>Document</title> 6 ????<style> 7 ????div { 8 ????????width: 200px; 9 ????????height: 200px;10 ????????background: red;11 ????????border-radius: 10px 40px 70px 100px;12 ????}13 ????</style>14 </head>15 <body>16 ????<div></div>17 </body>18 </html>
1、HTML+DIV+CSS零基础快速入门到制作企业站视频课程_21 css定位作业
原文地址:https://www.cnblogs.com/denggelin/p/8996994.html