html - Split a <td> table element into LEFT and RIGHT justified -
whats best way split table element <td>
? don't want use nested tables. need internal element have 2 elements 1 left justified , other right justified no border.
for example:
<table> <tr> <td>left, right</td> </tr> </table>
any other ways besides following?
<table> <tr> <td>left</td> <td>right</td> </tr> </table>
i want internal element <span>
or whatever best this.
<table> <tr> <td> <div style="float:left">left</div><div style="float:right">right</div> </td> </tr> </table>
Comments
Post a Comment