2016-04-21 40 views
0

我想像彎曲的形狀一樣彎曲div的角落!塑造div的角落

我嘗試邊界半徑,但它過多的角落形狀。 是否有任何css3屬性來實現結果?

這是我現在已經

enter image description here

得到這個就是我想要它看起來像..

enter image description here

HTML:

<body> 
    <div class="who_we_are_bg"> 
    <div class="container"> 
    <div class="content"> 

<div class="who_we_are_content"> 
<img src="images/who-we-are.jpg" alt="LCK chemicals"/> 
<div class="corner1"></div> 
<div class="corner2"></div> 
<div class="corner3"></div> 
<div class="corner4"></div> 
<h2>WHO WE WRE</h2> 
<p>SRI LCK Chemical founded in 2010 has exceptional sourcing ability for chemicals used in Industrial and House keep segments. We strive to develop quality products and outstanding customer service.</p> 
<p>SRI LCK Chemical founded in 2010 has exceptional sourcing ability for chemicals used in Industrial and House keep segments. We strive to develop quality products and outstanding customer service.</p> 
<a href="#">more info</a> 

    </div> 
</div> 
    </div> 
</div> 

</body> 

css:

.container{max-width:1170px;margin:0 auto;border:1px solid red;} 
    .who_we_are_bg{width:100%;float:left;background:url("images/texture2.jpg")repeat 0 0;} 
.who_we_are_content {float: none;margin: 0 auto;width: 90%;padding:50px 0 80px;overflow:hidden;} 
.who_we_are_content img{margin:8px 40px 20px 0;padding:10px;background:#fff;position:relative;} 
.corner1{position:absolute;width:50px;height:10px; box-shadow: 0px 0px 10px black;z-index:-1;} 
.who_we_are_content h2{font-family: 'OpenSans-Bold';font-size:30px;margin:10px 0 10px;} 
.who_we_are_content p{padding-bottom:10px;font-family: 'OpenSansSemibold';} 
.who_we_are_content a{font-family: 'OpenSansSemibold';text-decoration:none;float:left;padding:10px;background:#98b769;color:#fff;} 
+0

http://stackoverflow.com/questions/16388078/is-a-concave-border-radius-possible – Pogrindis

+0

你需要一個半邊框還是什麼? –

+0

是的人像圖中所示 – Nag

回答

0

您可以在背景上使用徑向漸變渲染凹面邊框。例如,像這樣:

#test { 
    width: 200px; 
    height: 200px; 
    background: #888888; 
    background: 
     radial-gradient(circle 20px at -20% 50%,transparent,transparent 100px,#888888 100px), 
     radial-gradient(circle 20px at 120% 50%,transparent,transparent 100px,#888888 100px); 
    background-size:100px 200px, 100px 200px; 
    background-position:0 0,100% 0; 
    background-repeat:no-repeat; 
} 

注意,大多數WebKit瀏覽器仍然需要爲徑向漸變的前綴,如果你想充分支持你可能需要執行舊的梯度語法太舊的瀏覽器。

從這裏簡稱:https://stackoverflow.com/a/16388187/4119808

+0

它給圓角的邊緣!但我希望邊緣平直,中間有小突起,如圖所示 – Nag