码迷,mamicode.com
首页 > 其他好文 > 详细

div border-radius画圆

时间:2014-10-19 01:19:46      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   for   sp   div   2014   

不要指定border-width属性:

<html>
<style type="text/css">
div{
    border-style: solid;
    background-color: #f00;
    border-width: 50px;
    border-radius: 50px;
    width: 100px;
    height: 100px;
}

</style>
<body>
    <div></div>
</body>
</html>

效果:

bubuko.com,布布扣

去掉border-width属性

<html>
<style type="text/css">
div{
    border-style: solid;
    background-color: #f00;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    background-color: #000;
    
}

</style>
<body>
    <div></div>
</body>
</html>

效果:

bubuko.com,布布扣

怎么是106和106?

去掉

border-style: solid;
<html>
<style type="text/css">
div{
    background-color: #f00;
    border-radius: 50px;
    width: 100px;
    height: 100px;
}

</style>
<body>
    <div></div>
</body>
</html>

 所以如果你想要在:before中画一个圆,则必须让:before是一个block

<html>
<style type="text/css">
div{
    margin: 400px;
}
div:before{
    content: "";
    display: block;
    background-color: #f00;
    border-radius: 50px;
    width: 100px;
    height: 100px;
}

</style>
<body>
    <div></div>
</body>
</html>

 

div border-radius画圆

标签:style   blog   http   color   ar   for   sp   div   2014   

原文地址:http://www.cnblogs.com/ghgyj/p/4034089.html

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