<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" >
    <style>
        div
        {
            text-align:center;
            border:2px solid #a1a1a1;
            padding:10px 40px;
            background:#dddddd;
            width:350px;
            height:100px;
            border-radius:0 ;
           box-shadow: 10px 10px 20px red;
        }
    </style>
</head>
<body>

<div>border-radius 属性允许您向元素添加圆角。</div>

</body>
</html>