I am looking to insert a separator line immediately following the H1 tag, however my attempts have been unsuccessful. Can someone provide assistance with this?
<style>
#sepr {
border-top-width: 3 px;
border-top-style: solid;
border-top-color: #FF563A;
max-width: 18%;
display:inline-block;
}
</style>
<h1>Test</h1><div id="sepr"></div>
When I place text inside <div id="sepr">
, the line appears above the title.
<h1>Test</h1><div id="sepr">Test title</div>
The desired outcome can be seen here: https://i.sstatic.net/qNOCZ.png