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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

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

c# - Search and Add Comment with OpenXML for Word -