添加<div class =“ row”>(bootstrap)元素后,<hr>元素消失

时间:2019-10-19 15:50:26

标签: html

我正在使用引导程序4.3.1编写登录页面。
添加“行” div后,水平标尺消失,我无法找回它。
有趣的是,当我添加带注释的section标记时,我可以再次看到水平线。

关于为什么发生这种情况的任何建议/如何在没有section标签的情况下再次显示水平线?

<div class="container">
  <div class="row">
    <header class="text-center">
      <h1 class="text-uppercase"><strong>The biggest startup event of the year</strong></h1>
    </header>
    <!-- <section> -->
      <hr>
      <button class="btn btn-primary btn-xl">Find out more</button>
    <!-- </section> -->
  </div>
</div>

1 个答案:

答案 0 :(得分:0)

您要尝试做的是有点混乱,因为hr标签给出的水平线的宽度为100%,并且该行占据了水平行

所以请再想一想,请尝试关闭div的行,然后尝试放置hr标签

5