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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

How to connect android app to App engine -

hadoop - Running Map Reduce Job shows error - Mkdirs failed to create /var/folders/ -