- 2
What does <table border=""> does in html?
4 ответов
+ 22
Adds border to a table... ~_~
+ 4
it does nothing actually. declaring "" means no border.
+ 3
Nothing to do at all, actually: deprecated in Html5, use css to style elements instead ^^
0
for make the border around the text.
like this--
<table border="2">
<tr>
<td> Red </td>
<td> Green </td>
</tr>
</table>