Spacing between thead and tbody

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

I have a simple html table like this:


  <         
7条回答
  •  攒了一身酷
    2020-12-02 20:13

    This will give you some white space between the header and table content

    thead tr {
      border-bottom: 10px solid white;
    }
    

    Although setting the border colour is a bit of a cheat method, it will work fine.

    Form investigation, you can't set box-shadow to a table row, but you can to table cells:

    th {
      box-shadow: 5px 5px 5px 0px #000000 ;
    }
    

    (I'm not sure how you want the shadow to look like, so just adjust the above.)

提交回复
热议问题
Column 1Column 2