.i{
display: inline-block;
width: 7px;line-height: 7px;
border-width: 7px;
border-style: solid;
border-color: transparent red transparent transparent;
margin-right: 5px;
}
display: inline-block;
width: 7px;line-height: 7px;
border-width: 7px;
border-style: solid;
border-color: transparent red transparent transparent;
margin-right: 5px;
}
2017-07-31
试试 word-spacing: -4px;
解决方案有很多,各有利弊,参考https://www.zhihu.com/question/21468450
解决方案有很多,各有利弊,参考https://www.zhihu.com/question/21468450
2017-07-18
还是比较喜欢用border写三角形
display: inline-block;
content: "";
width: 0;height: 0;
border-top:5px solid transparent;
border-right:5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid black;
margin-left: 5px;
height: 100%;
vertical-align: middle;
display: inline-block;
content: "";
width: 0;height: 0;
border-top:5px solid transparent;
border-right:5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid black;
margin-left: 5px;
height: 100%;
vertical-align: middle;