Spacing between thead and tbody

前端 未结 7 1016
情话喂你
情话喂你 2020-12-02 19:23

I have a simple html table like this:


  <         
7条回答
  •  旧时难觅i
    2020-12-02 20:11

    While all the solutions above are great, the result is inconsistent across browsers, so I figured out a better way to do it based on my heinous experience with email templates. Just add a dummy tbody in-between the actual tbody and the thead, nested in the dummy tbody should be a td with height set to the desired spacing. Example below

Column 1Column 2
// Dummy tbody // Actual tbody
{{ tableRowItem }}

提交回复
热议问题