Horizontal Rule
Bootstrap’s horizontal rule provides a solution for separating content.
About
A horizontal rule is a component useful for separating content or adding a simmple accent to your content.
Example
Simply add the <hr>
tag to your content to add the horizontal rule.
This is a paragraph that I want to separate from the paragraph below.
This is the other paragraph, which is separate from the one above.
<div class="bd-example">
<p>This is a paragraph that I want to separate from the paragraph below.</p>
<hr>
<p>This is the other paragraph, which is separate from the one above.</p>
</div>