Dec 21, 2004 #1 TheConeHead Programmer Joined Aug 14, 2002 Messages 2,106 Location US anyone know a way I can have 1 cell (<td></td>) and put one thing aligned left and another aligned right?
anyone know a way I can have 1 cell (<td></td>) and put one thing aligned left and another aligned right?
Dec 21, 2004 1 #2 Vragabond Programmer Joined Jul 23, 2003 Messages 5,100 Location AT Try putting two floated divs inside. Code: <td> <div style="float: left;">Left</div> <div style="float: right;">Right</div> <div style="clear: both;"></div> </td> That would spring to mind. Depending on what you want to do, there's plenty of options, including two cells without the border in between. Upvote 0 Downvote
Try putting two floated divs inside. Code: <td> <div style="float: left;">Left</div> <div style="float: right;">Right</div> <div style="clear: both;"></div> </td> That would spring to mind. Depending on what you want to do, there's plenty of options, including two cells without the border in between.