码迷,mamicode.com
首页 > Web开发 > 详细

css3简单的圆角框

时间:2014-06-05 19:27:34      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   a   http   ext   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>圆角效果border-radius</title>
<style type="text/css">
body,div{margin:0;padding:0;}
.border{width:200px;border:2px solid gray;height:20px;
-moz-border-radius:2px;/*仅Firefox支持,实现圆角效果*/
-webkit-border-radius:2px;/*仅Safari,Chrome支持,实现圆角效果*/
-khtml-border-radius:2px;/*仅Safari,Chrome支持,实现圆角效果*/
border-radius:10px;/*仅Opera,Safari,Chrome支持,实现圆角效果*/
}
</style>
</head>
<body>
<div class="border">border radius</div>
</body>
</html>

css3简单的圆角框,布布扣,bubuko.com

css3简单的圆角框

标签:c   style   class   a   http   ext   

原文地址:http://www.cnblogs.com/cwl168/p/3768355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!