如何在Chrome/Opera中使CSS 3圆角隐藏溢出
overflow: hidden
#wrapper {
width: 300px;
height: 300px;
border-radius: 100px;
overflow: hidden;
position: absolute;}#box {
width: 300px;
height: 300px;
background-color: #cde;}<div id="wrapper"> <div id="box"></div></div>
最新情况:
繁花不似锦