带有文本和图标的Bootstrap4按钮

时间:2019-03-08 10:12:48

标签: twitter-bootstrap bootstrap-4

我想通过使用bootstrap4在探索文本和真棒字体图标之间留一些空间

2 个答案:

答案 0 :(得分:0)

插入 以添加更多空格。

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">


<button class="btn btn-primary"><i class="fa fa-adjust"></i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Explore</button>

答案 1 :(得分:0)

这是我用于按钮的方式:

<button type="button" class="btn btn-primary"><i class="fas fa-close mr-1"></i> Primary</button>

使用默认的间距类根据需要添加空间。

谢谢。