Try this:
div {
text-align: justify;
}
div::after {
content: "";
display: inline-block;
width: 100%;
}
<div>
Some sample testing string
</div>
jsFiddle
Take a look here for more info.
Try this:
div {
text-align: justify;
}
div::after {
content: "";
display: inline-block;
width: 100%;
}
<div>
Some sample testing string
</div>
jsFiddle
Take a look here for more info.