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

CSS3--border-radius小用法

时间:2017-02-25 21:38:44      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:type   back   logs   ges   img   http   ott   char   html   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            div.circle {
                height: 100px;
                width: 100px;
                background: #9da;
                border-radius: 50px;
            }
            
            div.left-circle {
                height: 100px;
                width: 50px;
                background: #9da;
                border-radius: 50px 0px 0px 50px;
            }
            
            div.right-circle {
                height: 100px;
                width: 50px;
                background: #9da;
                border-radius: 0px 50px 50px 0px;
            }
            
            div.top-circle {
                height: 50px;
                width: 100px;
                background: #9da;
                border-radius: 50px 50px 0px 0px;
            }
            
            div.bottom-circle {
                height: 50px;
                width: 100px;
                background: #9da;
                border-radius: 0px 0px 50px 50px;
            }
        </style>
    </head>

    <body>
        <h1>circle:</h1>
        <div class="circle"></div>
        <br/>
        
        <h1>left-circle:</h1>
        <div class="left-circle"></div>
        <br />
        
        <h1>right-circle:</h1>
        <div class="right-circle"></div>
        <br />
        
        <h1>top-circle:</h1>
        <div class="top-circle"></div>
        <br />
        
        <h1>bottom-circle:</h1>
        <div class="bottom-circle"></div>
    </body>
</html>

 

技术分享技术分享技术分享

技术分享技术分享

 

CSS3--border-radius小用法

标签:type   back   logs   ges   img   http   ott   char   html   

原文地址:http://www.cnblogs.com/qianqianyixiao/p/6442628.html

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