修改边框种类
使用了border-radius属性后,不管边框是什么种类,都会将边框沿着圆角曲线进行绘制。
如下所示的样式代码:
.wrap {
border: dashed 5px blue;
border-radius:20px;
-moz-border-radius:20px;
-o-border-radius:20px;
-webkit-border-radius: 20px;
background-color:skyblue;
padding:20px;
width:180px;
}
请亲自将边框修改为虚线,颜色修改为红色,并指定边框宽度为10px,然后重新运行该示例,提交运行看看效果。