HTML <hr>
query_builder | Christopher PisaniThe HTML element <hr> marks a full length line border to separate data in a document.
<style>
hr {
border: none;
border-top: 3px double #333;
color: #333;
overflow: visible;
text-align: center;
height: 5px;
}
hr:after {
background: #fff;
content: '§';
padding: 0 4px;
position: relative;
top: -13px;
}
</style>
<p>§1: The first rule of Fight Club is: You do not talk about Fight Club.</p>
<hr>
<p>§2: The second rule of Fight Club is: Always bring cupcakes.</p>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.