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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -