I have three divs that I would like to display on the same line. Each of the three has different widths and heights, and they are not straight text. I\'d like to left-align one
A further enhancement to the first answer:
In the "center" div CSS, you need to add:
text-align:center;
In the "right" div CSS, you need to add:
text-align:right;
... to perfectly achieve left/center/right aligning.