I would like to justify a very short line with CSS. With text-align: justify;
, it does not work. Is there another way to do this?
body {
margin: 0;
padding: 0;
width: 50%;
}
.justify {
font-family: Arial;
font-size: 30px;
width: 100%;
border: 1px solid red;
padding: 10px;
color: red;
text-align: justify;
}
<div class="justify">Justify this text</div>
Would be thankful for help. :)