Is it possible to align the text in divs so that it perfectly lines up along the edges?
.name {
margin: 0 0 5px 10px;
font-weight: bold;
font-size: 14px;
}
.row {
margin: 0 0 5px 10px;
width: 500px;
justify-content: space-between;
}
<div class="name">Align</div>
<div class="row">
zxcsdz 123
</div>
<div class="row">
qwe 4561
</div>
<div class="row">
asdsq 789
</div>
The current output looks like this
zxcsdz 123
qwe 4561
asdsq 789
However, the desired alignment is more precise, resembling something like this
zxcsdz 123
qwe 4561
asdsq 789