我有以下 html 块
<div class=""header>
<i class="icon-star"></i>
<h1>some text goes here</h1>
</div>
和这些 CSS 样式
h1 {
display: inline-block;
}
i {
display: inline-block;
width: 0px;
height: 0px;
border-style: solid;
border-width: 200px 0 0 200px;
border-color: transparent transparent transparent red;
}
我也在使用 fontawesome 图标字体。我想要实现的是这个
这就是我尝试过的 jsfiddle。我完全没有做到这一点。有人可以帮我吗?