html - Getting the exact amount of spaces between tables -
i'm trying exact amount of spaces between 2 tables. tried br, takes around 10 pixels of spaces between 2 tables. instead of having 10 pixels of spaces between tables, have 5. doable? thanks.
test.php
<table border = '1'> <tr><td>hello</td></tr> </table> <br> <table border = '1'> <tr><td>hello</td></tr> </table>
remove <br/>
html , update css following
table:first-child { margin-bottom : 5px; }
Comments
Post a Comment