如何在左侧制作双边框,外侧较厚,内侧较薄

时间:2017-02-14 06:10:03

标签: html css css-shapes

我想在左侧制作双边框,只有粗轮廓(外部)和薄轮廓(内部)。我该怎么做?

Double border Image

1 个答案:

答案 0 :(得分:0)

我认为这就是你要找的......



.border1{
  width:100px;
  height:100px;
  border-left: 10px solid #ccc;
  }
.border2{
 width: 100px;
 height: 100px;
 display: block;
 margin-left: 15px;
 border-left: 3px solid #ccc;
  }

<div class="border1">
  <div class="border2"></div>
</div>
&#13;
&#13;
&#13;

检查并告诉我你是否还想要其他东西..