如何创建带有灰色边框的白色箭头?

时间:2015-10-29 19:24:54

标签: html css

我正在尝试创建一个向左箭头但带有灰色边框的箭头。

到目前为止,我只有一个灰色箭头。

有人会对我如何做到这一点有所了解吗?

我附上了我的意思。

提前谢谢!

.tri {

    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px;

}

.tri{
    border-color: transparent #ccc transparent  transparent;

}


<div class="tri"></div>

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试以下内容:

&#13;
&#13;
.box {  
  width: 50px;
  height: 150px;
  border: solid 1px gray;
  border-radius: 5px;
  margin: 20px 0 0 100px;
  position: realtive;
  
  }

.box:after, .box:before {
  content: "\f0d9";
  font-family: fontAwesome;;
  top: 40%;
  left: -12px;
  height: 50px;
  width: 50px;
  font-size: 36px;
  color: gray;
  position: relative;
  
  
  }

 .box:after {
   left: -23px;
   color: white;
   
   }
&#13;
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>



<div class="box"></div>
&#13;
&#13;
&#13;