塑造div的角落

时间:2016-04-21 11:25:45

标签: css css3

我想弯曲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;}

1 个答案:

答案 0 :(得分: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