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

圆角矩形

时间:2017-03-11 10:45:47      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:charset   css   ges   技术分享   style   set   png   dia   tom   

border:redius:左上  右上   右下  左下;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css" media="screen">
        .box1
        {
            width:150px;
            height:45px;
            border:1px solid blue;
            box-shadow: 1px 1px 1px 1px lightblue;
            border-radius: 10px 10px 10px 10px;
            margin-bottom: 60px;
        }
        .box2
        {
            width:150px;
            height:45px;
            border:1px solid blue;
            box-shadow: 1px 1px 1px 1px lightblue;
            border-radius: 20px 20px 20px 20px;
            margin-bottom:60px;
        }
        .box3
        {
            width:150px;
            height:45px;
            border:1px solid blue;
            box-shadow: 1px 1px 1px 1px lightblue;
            border-radius: 0 20px 0 0;
            margin-bottom: 60px;
        }
        .box4
        {
            width:150px;
            height:45px;
            border:1px solid blue;
            box-shadow: 1px 1px 1px 1px lightblue;
            border-radius: 50px;
            margin-bottom: 60px;
        }
        .box5
        {
            width:45px;
            height:45px;
            border:1px solid blue;
            box-shadow: 1px 1px 1px 1px lightblue;
            border-radius:50px;
        }    

    </style>
</head>
<body>
    <div class="box1">
    </div>
    <div class="box2">
    </div>
    <div class="box3">
    </div>
    <div class="box4">
    </div>
    <div class="box5">
    </div>
</html>

 

技术分享

 

圆角矩形

标签:charset   css   ges   技术分享   style   set   png   dia   tom   

原文地址:http://www.cnblogs.com/juansilence/p/6534229.html

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