使用display:inline-block
與vertical-align
多看這裏:CSS vertical-align Property
.fa {
display:inline-block;
vertical-align:bottom;
}
span {
display:inline-block;
height:150px;
}
div {
background:red;
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<div>
<span >Total</span>
<i class="cat-color fa fa-circle" style="color: darkorange" aria-hidden="true"></i>
<span>11</span>
</div>
2.使用position:relative;
和top:
多看這裏CSS position
.fa {
position:relative;
top:80%;
}
div {
background:red;
height:150px;
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<div>
<span >Total</span>
<i class="cat-color fa fa-circle" style="color: darkorange" aria-hidden="true"></i>
<span>11</span>
</div>
這些都只是2解決方案。有更多...但你應該能夠實現你想要的使用這些2.一個讓我知道,如果它
你嘗試過什麼?你可以發佈你的CSS?一般來說,font-awesome集顯示「i」元素以內聯。我通常將其設置爲內嵌塊或塊,具體取決於我想要定位的內容。 – Lowkase