If you want to have an HTML table included into the blog as I had done in my previous post. Make sure that you remove all the spaces in the HTML code.
If you write code like.
<table>
<tr><td>hii</td></tr>
<tr><td>hii</td></tr>
</table>
Then the table will have a lot of spaces from the top. So to avoid getting the spaces, have the code like
<table><tr><td>hii</td></tr><tr><td>hii</td></tr></table>
Forget about readiablity and coding standards. :)
This is written solely to get some traffic to the blog...lol
7 years ago
No comments:
Post a Comment