how to break a line or space in between two rows of the html table

前端 未结 7 1522
长情又很酷
长情又很酷 2021-01-18 06:38

I need to give space or break between two rows, so that my page will looks good.

if you look my code i had given many empty rows and column to make a space between t

7条回答
  •  日久生厌
    2021-01-18 07:08

    border spacing attribute has to be specified in CSS
    
    table
        {
        border-collapse:separate;
        border-spacing:10px 0px;
        }
    

    The above code set 10px spacing between the rows and 0px spacing between the columns

提交回复
热议问题