<br/>标签在Firefox中不起作用,但在chrome中工作

时间:2017-11-20 09:20:24

标签: html bootstrap-4

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>

1 个答案:

答案 0 :(得分:0)

只需删除<br />代码。使用以下代码。

<div class="mt-3">
  <button class="btn btn-dark" id="button">
     click me!
  </button>
<div>