How can I show text in the side of a table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How can I show text in the side of a table?

14th May 2018, 6:02 AM
Arnab Maiti
Arnab Maiti - avatar
10 Answers
0
How can I show text side of table
14th May 2018, 6:03 AM
Arnab Maiti
Arnab Maiti - avatar
0
align:left or right... in style tag
14th May 2018, 6:17 AM
Charlie Leo
Charlie Leo - avatar
0
but the text is showing below the table
14th May 2018, 6:18 AM
Arnab Maiti
Arnab Maiti - avatar
0
<div style="align:left;"> <table> <tr> <th>hello</th> <td> hii </td> </tr> </table> </div>
14th May 2018, 6:21 AM
Charlie Leo
Charlie Leo - avatar
0
did you give border for the table??
14th May 2018, 6:22 AM
Charlie Leo
Charlie Leo - avatar
0
you can move the whole table to right or left
14th May 2018, 6:23 AM
Charlie Leo
Charlie Leo - avatar
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
14th May 2018, 6:37 AM
Arnab Maiti
Arnab Maiti - avatar
0
then you move that table to right side... and next using div tag ,allate a space left to the table
14th May 2018, 6:40 AM
Charlie Leo
Charlie Leo - avatar
0
what is "th"
21st May 2018, 7:11 PM
olawale
olawale - avatar
0
table header
22nd May 2018, 3:43 AM
Charlie Leo
Charlie Leo - avatar