html - Line that goes from end of text to end of block on middle of height -
i have headings , want add line goes end of text in heading end of heading block. line should in middle of line height.
something
+---------------+ | text ----| +---------------+
a pseudo-element ideal that:
h1 { overflow: hidden; position: relative; } h1::after { content: ""; position: absolute; top: 50%; width: 100%; height: 2px; transform: translatey(-50%); margin-left: .25em; background-color: red; }
<h1>some text</h1>
modern version (using flexbox instead of positioning)
h1 { overflow: hidden; display: flex; align-items: center; } h1::after { content: ""; flex: 1; height: 2px; margin-left: .25em; background-color: red; }
<h1>some text</h1>
Comments
Post a Comment