Merge two HTML table cells

前端 未结 3 464
余生分开走
余生分开走 2020-12-01 04:49

I\'m creating a table in HTML and I\'d like to have my top cell be the width of two. Here\'s a rough drawing:

__________________________________________
|            


        
3条回答
  •  孤独总比滥情好
    2020-12-01 05:32

    Add an attribute colspan (abbriviation for 'column span') in your top cell () and set its value to 2. Your table should resembles the following;

    See also
         W3 official docs on HTML Tables

提交回复
热议问题