border-radius处理兼容?

728 阅读1分钟
   <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100px;
            height: 100px;
            background: gold;
           /* border-radius四个方向:上、右、下、左*/
            /*border-radius: 5px 10px 15px 20px;*/
            /*border3个值:上、右上/左下 右下*/
            border-radius: 5px 20px 30px;
            -wekit-border-radius:5px 20px 30px;
            margin: 10px auto;
        }
    </style>
</head>
<body>
<div class="box"></div>
</body>