我在我的应用中使用bootstrap 4和材质图标。问题是我有一个带有文字和图标的按钮。
.button-icon {
vertical-align: middle;
}
<button class="button-icon">
<i class="material-icons">account_box</i>
My Account
</button>
我尝试更改图标的字体大小,但会在整个页面中抛出其他图标的大小。
我只是想用文字将文字带到行中心。谢谢你的帮助。
答案 0 :(得分:6)
一种方法是使用Flexbox utility类,在这种情况下为.d-flex .align-items-center
。
<button class="btn button-icon d-flex align-items-center">
<i class="material-icons">account_box</i>
My Account
</button>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">