How can I align text so that some of it aligns to the left and some of it aligns to the right within the same line?
This text should be left-aligned
HTML FILE:
Left Aligned Right Aligned
CSS FILE:
.left { float: left; } .right { float: right; }
and you are done ....