+ 2
How can I show text in the side of a table?
10 Answers
0
How can I show text side of table
0
align:left or right... in style tag
0
but the text is showing below the table
0
<div style="align:left;">
<table>
<tr>
<th>hello</th>
<td> hii </td>
</tr>
</table>
</div>
0
did you give border for the table??
0
you can move the whole table to right or left
0
<table >
<tr>
<td rowspan='2' valign='center'>Sample Text</td>
<td>Sup</td>
</tr>
<tr>
<td>Sub</td>
</tr>
</table>Text here
//I want to show text here beside table. Run this you can understand my problem
0
then you move that table to right side... and next using div tag ,allate a space left to the table
0
what is "th"
0
table header