DONT ADD ANYTHING HERE!

The hr element represents a paragraph-level thematic break, e.g. a scene change in a story, or a transition to another topic within a section of a reference book.

Example


Example


HTML

    <div class="content example">

        <hr>
        
    </div>

CSS

    .example~.example hr {
        border: 0.5rem solid green;
        border-radius: 5px;
    } 

References