我试图弄清楚是否有办法用 CSS 做到这一点:我有一个边框半径为 50%(圆形)的容器 div。其内部是一个矩形 div,高度为 30%,位于容器底部,我希望能够将其屏蔽掉,以使容器圆形边框半径之外的任何内容都不会显示。我该如何做到这一点?附件是当前正在发生的事情的屏幕截图,这是我的代码:
<div id="coupon_container">
<div id="meter_container">50c off</div>
</div>
#coupon_container {
position: fixed; right:0; top:0; z-index: 100; color: #fff; width:170px; height: 120px;
#meter_container {
position: absolute; width: 110px; height:110px; .round; background: @greenDk; border:5px solid #fff; left: 60px; overflow: hidden;
.meter_level { width: 100%; height:30%; position: absolute; bottom:0; text-align: center; font-size: 1.6em; background: @limeLt; }
}
}