div{border-radius:7px 7px 0px 7px;} 设置圆角半径为7像素
border-radius 用来设置边框圆角。当使用一个半径时确定一个圆形;当使用两个半径时确定一个椭圆,这个(椭)圆与边框的交集形成圆角效果。
即使元素没有边框,圆角也可以用到 background 上面,具体效果受 background-clip 影响。
这是一个简写属性,用来设置 border-top-left-radius, border-top-right-radius, border-bottom-right-radius ,border-bottom-left-radius。