How can I make a header appear with both a horizontal line (hr) and a button on the same line like this:
Header ------------------------------------ Button
https://i.sstatic.net/cYT8W.png I attempted using display:flex, but the hr ended up as a vertical line.
.flex-header {
display: flex;
}
<div class="flex-header">
<h2> Des habitations pour tous </h2>
<hr/>
<button> Collections </button>
</div>