當你有一個帶有邊界半徑的可滾動div時,孩子們會使用eclipse或者不尊重這個邊界半徑。例如下面是該問題的一個小提琴:滾動元素上的border-radius
http://jsfiddle.net/Thatguyhampton/E9dmr/2/
.scrollable {
overflow: auto;
overflow-y: overlay;
-webkit-overflow-scrolling: touch;
-webkit-transform: translate3d(0, 0, 0);
height: 400px;
width: 200px;
background-color: blue;
border-radius : .5em;
}
.content {
height: 500px;
width: 200px;
}
.content-top {
position :absolute;
top: 0;
height: 50px;
width : 200px;
background-color: red;
}
紅色區域顯示尖角,而不是圓形的人父。有沒有辦法解決?
的[相同的邊框半徑(http://jsfiddle.net/E9dmr/5/)添加到子(或[繼承邊界半徑(http://jsfiddle.net/E9dmr/ 4 /))是不是我想的解決方案? – potashin