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

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -