2014-03-24 76 views
1

我想在CSS中創建背景雕刻。看看下面的圖片。CSS3背景雕刻或半徑問題

Image Carve!

我怎樣才能在CSS3添加半徑這樣嗎?任何人都可以幫忙

+0

檢查這個問題:CSS3形狀逆圈(http://stackoverflow.com/questions/10501488/css-3-shape-逆圓或切出圓) –

回答

0

在底部添加另一個格帶有邊框半徑。

HTML:

<div class="content"> 
    <div class="bottom_border"></div> 
</div> 

CSS:

.content{ 
    background:#CCC; 
    height:100px; 
    width:100px; 
    position:relative; 
    overflow:hidden 
} 
.bottom_border { 
    position:absolute; 
    top:0; 
    bottom:0; 
    background:#FFF; 
    width:100px; 
    height:20px; 
    top:90px; 
    bottom:-10px; 
    border-radius: 50% 
}