Html table tr inside td

后端 未结 9 2243
余生分开走
余生分开走 2020-12-01 02:41

I am trying to create a table in HTML. I have the following design to create. I had added a inside the but somehow the table

9条回答
  •  一向
    一向 (楼主)
    2020-12-01 03:07

    You cannot put tr inside td. You can see the allowed content from MDN web docs documentation about td. The relevant information is in the permitted content section.

    Another way to achieve this is by using colspan and rowspan. Check this fiddle.

    HTML:

    Name 1 Name 2 Name 3 Name 4
    ITEM 1 ITEM 2 name1 price1 ITEM 4
    name2 price2
    name3 price3/td>

    And some CSS:

    table {
        border-collapse: collapse       
    }
    
    td {
       border: 1px solid #000000
    }
    

提交回复
热议问题