我想弄清楚是否有辦法用CSS來做到這一點:我有一個邊界半徑爲50%(圓形)的容器div。裏面是一個矩形格子,高度爲30%,位於容器的底部,我希望能夠將其遮蓋,以便容器圓角邊框外的任何內容都不會顯示出來。我該如何做到這一點?附件中是什麼目前發生的截圖,這是我的代碼:由圓形容器div掩蓋的嵌套div
<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; }
}
}
根據我的經驗,你不能讓它直CSS做到這一點。事情「溢出」邊界半徑。 –
你有更完整的代碼可以發佈嗎?我似乎無法用我所看到的來重現問題,甚至是截圖。 – Mike