我的箭头似乎没有边框。我一直在关注这个来源,但我似乎无法让我的工作。所以我在这里做了一个小提琴来向你展示我正在使用的东西。
<div class="share-bubble">0</div>
.share-bubble{
background-color: white;
border-radius: 5px;
box-shadow: 0 0 2px #B2B2B2;
display: inline-block;
padding: 6px 10px;
position: relative;
vertical-align: top;
border: 1px solid #CCC;
}
.share-bubble::before {
background-color: white;
content: "\00a0";
display: block;
height: 8px;
position: absolute;
top: 11px;
left: -5px;
transform: rotate( 29deg ) skew( -35deg );
-moz-transform: rotate( 29deg ) skew( -35deg );
-ms-transform: rotate( 29deg ) skew( -35deg );
-o-transform: rotate( 29deg ) skew( -35deg );
-webkit-transform: rotate( 29deg ) skew( -35deg );
width: 10px;
}
如何在箭头周围设置边框?提前感谢您的帮助。