0
What if we want to add border and also align a table?
6 odpowiedzi
+ 1
<!--You use align the table as shown below-->
<!--As for double border, you can style your html table with CSS-->
<!--The first align attribute is for the table-->
<!--the second is for the text in a cell within the table-->
<body>
<table border="2" align="center">
<tr>
<td>Cell text not aligned</td>
<td align="right">Cell text aligned to the right</td>
</tr>
</table>
</p>
</body>
0
yes
0
rr
0
@wasim is there a specific order? First add border and then align it or nothing lkke that?
0
You can achieve it by using rowspan
0
???