You can easily achieve this with grid
.parent {
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
}
.line{
background:black;
height:1px
}
<div class="parent">
<div>My some text</div>
<div class="line"></div>
</div>
Question. sentence with half-line
In HTML / CSS.
like the picture uploaded, I wanna fill the blank space after some words with line.
the length of words can be changed.
If the full width is 1000px and the word is 100px-long, then half-line is 900px long.
And the word is 350px, then half-line is 650px-long.
How can I make it by CSS?
Let me know please..
wow legend.. thanks@@@