标签:style blog ar color sp strong on div log
CSS圆角:
#top2 {
margin-left:20px;
padding:10px; width:600px; height:300px;
border: 5px solid #ff6600;
-moz-border-radius: 15px; /* Gecko browsers */
-webkit-border-radius: 15px; /* Webkit browsers */
border-radius:15px; /* W3C syntax */
/*
•-moz(例如 -moz-border-radius)用于Firefox
•-webkit(例如:-webkit-border-radius)用于Safari和Chrome。
*/
}
<div id="top2">
</div>
标签:style blog ar color sp strong on div log
原文地址:http://www.cnblogs.com/sunshine-habit/p/4111187.html