Problem
When you're designing web pages using CSS, you may want to align the text right to make the layout attractive. How can you display right align text using CSS? Please see the solution.
Solution
In order to align text right, we need to use the text-align property. Text-align contains four values.
left: flush left.
right: flush right.
center: be placed in the middle.
justify: each line is stretched so that every line has equal width.
Tips
See also