Align Text Right in CSS
Let's align the text in paragraphs to the right:
<p>
This is a paragraph with text.
</p>
p {
text-align: right;
}
:
Let's align the text in paragraphs to the right:
<p>
This is a paragraph with text.
</p>
p {
text-align: right;
}
: