aligning text on left and right on same line - Joomla! Forum - community, help and support
hi,
i'm trying make list of products / prices , want like:
product 1 (large space) $10
product 2 (large space) $30
i need product name aligned left , on same line price aligned far right.
i tried span style=text-align:right; doesn't move text over. tried making div's of 80% , 20% width, works moves prices line below product instead of keeping on same line.
any suggestions? stupid i'm overlooking... i'm :gasp: use tables because know work.
i'm trying make list of products / prices , want like:
product 1 (large space) $10
product 2 (large space) $30
i need product name aligned left , on same line price aligned far right.
i tried span style=text-align:right; doesn't move text over. tried making div's of 80% , 20% width, works moves prices line below product instead of keeping on same line.
any suggestions? stupid i'm overlooking... i'm :gasp: use tables because know work.
try float left on both give them widths , wrapper container around two
<div style="width:600px;">
<div style="float:left;width:280px;padding:5px;">column one</div>
<div style="float:left;width:280px;padding:5px;">column two</div>
</div>
then can apply padding , widths meet formatting needs.
<div style="width:600px;">
<div style="float:left;width:280px;padding:5px;">column one</div>
<div style="float:left;width:280px;padding:5px;">column two</div>
</div>
then can apply padding , widths meet formatting needs.
Comments
Post a Comment