我使用下面的CSS,HTML代码在跨度之前显示L形状。但它的形状因浏览器而异。
.bulletInline::before {
font-family: Roboto, sans-serif;
text-align: center;
text-decoration: none;
margin-right: 0px;
display: inline-block;
font-weight: bolder;
font-size: 32px;
width: auto;
height: auto;
color: #BABABA;
content: ' ⌞ ';
}
<dl>
<dt>
<span class="bulletInline"> </span>
</dt>
</dl>