html - Adding Some "Spacers" to a Table -


here's fiddle:

http://jsfiddle.net/6yu6n/

here's mockup of want accomplish:

enter image description here

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">&nbsp;</td>


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -