Aligning Text Left and Right in CSS
Well, finally, let's align the text both to the right and to the left. This effect can only be seen if the text is long enough:
<p>
some long text
</p>
p {
text-align: justify;
width: 300px;
}
:
Well, finally, let's align the text both to the right and to the left. This effect can only be seen if the text is long enough:
<p>
some long text
</p>
p {
text-align: justify;
width: 300px;
}
: