here is the link of my index.html file
我正在使用bootstrap 4 beta和HTML。此代码工作正常,但它有一个小问题。我想在ul和button标签之间添加一个行空间,我使用了<br>
标签。这个<br>
标记在chrome上工作正常,但在Firefox浏览器上它没有提供行空间。
</ul>
<br/>
<button class="btn btn-dark" id="button">
click me!
</button>
答案 0 :(得分:0)
只需删除<br />
代码。使用以下代码。
<div class="mt-3">
<button class="btn btn-dark" id="button">
click me!
</button>
<div>