I have a cell in an HTML <table>. I would like part of the cell contents to be left justified and part to be right justified. Is this possible?
|
|
If you want them on separate lines do what Balon said. If you want them on the same lines, do:
|
|||||||||||||||||||||
|
|
Do you mean like this?
If yes
|
|||||
|
|
It is possible but how depends on what you are trying to accomplish. If it's this: | Left-aligned Right-aligned | in one cell then you can use floating divs inside the td tag:
If it's
| Left-aligned Then Balon's solution is correct. If it's: | Left-aligned | Right-Aligned | Then it's:
|
||||
|
|
|
I came up with this while trying to figure out how to display currency ('$' to left, number to right) in table cells:
|
||||
|
|
|
td style is not necessary but will make it easier to see this example in browser
|
|||
|
|
|
sure but you need to wrap those "blocks" in separate tags and apply the alignment to those. |
|||||
|
|
You could use something like:
The And you can use either |
|||||
|
