PHP
·
发表于 5年以前
·
阅读量:8326
// border-radius主要用于绘制圆点、圆形、椭圆、圆角矩形等形状,以下为简单绘制的两个图形。
.circle,
.ellipse {
width: 100px;
height: 100px;
background: #249ff1;
border-radius: 50%;
}
.ellipse {
width: 150px;
background: #ff9e01;
}
//用法 ;
//<div class="circle"></div>
//<div class="ellipse"><div></div></div>