Here is a sample code for HTML Table:
<table>
<tr>
<td>
Abc
</td>
<td>
123
</td>
</tr>
<tr>
<td>
xyz
</td>
<td>
456
</td>
</tr>
</table>
See the HTML table code above. There are lot of new line as we press Enter after each tag. This causes lot of white spaces in blogger.
To remove the white spaces, put the HTML table code in one line and press enter only when a line is complete.
You can rewrite the HTML table code as below and the white space issue will be resolved.
<table> <tr> <td> Abc </td> <td> 123 </td> </tr> <tr> <td> xyz </td> <td> 456 </td> </tr> </table>
Hope it helps. Give your comments or feedback.
Click here to see other useful Blogger tips
No comments:
Post a Comment
Please give your feedback, questions and suggestions. I will surely answer you.