我有一个内部和's。我的问题:外部 div 有边界半径和溢出:隐藏。图像比它的 parent 更宽。但是溢出:隐藏可以很好地隐藏图像的其余部分。只有边界半径不适用于图像。为什么?
我的 HTML 结构:
<div class="teaser-container tc1-sidebar">
<a href="#">
<img class="teaser-image bottom" src="dist/img/teaser/bigteaser-bonus-hover.jpg" alt="teaser"><img class="teaser-image top" src="dist/img/teaser/bigteaser-bonus.jpg" alt="teaser">
</a>
</div>
外部的 CSS:
position: relative;
overflow: hidden;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
内部的 CSS:
position: absolute;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
感谢您提供任何解决方法!
看看我的问题:http: //jsfiddle.net/7h4SD/