How to add a number to Left top Of a td Element
-
Hi to every buddy i have a table like this
test 1
test2 2
i want have another number in each td elemet in top and Left Of each td. is there a tag for do this like sub tag ? if no how can do this? thank for any idea
-
Hi to every buddy i have a table like this
test 1
test2 2
i want have another number in each td elemet in top and Left Of each td. is there a tag for do this like sub tag ? if no how can do this? thank for any idea
-
Hi to every buddy i have a table like this
test 1
test2 2
i want have another number in each td elemet in top and Left Of each td. is there a tag for do this like sub tag ? if no how can do this? thank for any idea
Hi Probably you want to show data in this notation 1 Data 1 Then try with following code
<table>
<tr>
<td border="1"><sup>1</sup> test1 <sub>1</sub> </td>
<td border="1"><sup>2</sup> test2 <sub>2</sub> </td>
</tr>
</table> -
Hi to every buddy i have a table like this
test 1
test2 2
i want have another number in each td elemet in top and Left Of each td. is there a tag for do this like sub tag ? if no how can do this? thank for any idea
You can use sup tag
2 test 1
3 test2 2
-
Haven't you tried
This tag defines superscript text. Example,
<p><sup>23</sup>text contains <sub>4</sub></p>
Output is : 23text contains 4 I guess this what you mean by "top and left of each td". thanks