html - Adding Some "Spacers" to a Table -
here's fiddle:
here's mockup of want accomplish:
as can see, want add tiny space between header , first "pick container." , add space between each pick container.
what's best this?
you can use need space:
.... <tr class="big_gap"> <td colspan="4"></td> </tr> ... <tr class="small_gap"> <td colspan="4"></td> </tr> .... <style> .big_gap td { height: 19px; } .small_gap td { height: 10px; } </style>
this way can give specific appearance gap in between. , if doesnt behave can add in <td colpan="4"> </td>
Comments
Post a Comment