2015-10-16 27 views

回答

2

您需要添加colspan ="3"因为你有最大3列在row

table{ 
 
    width:100%; 
 
} 
 

 
thead{ 
 
    background-color: #eee; 
 
    width:100%; 
 
} 
 

 
tbody{ 
 
    width: 100%; 
 
}
<table width="100%"> 
 
    <thead> 
 
     <tr> 
 
      <th colspan="3"> Column 1</th> 
 
     </tr> 
 
    </thead> 
 
    
 
    <tbody> 
 
     <tr> 
 
      <td colspan="3">Header 1</td> 
 
     </tr> 
 
     <tr> 
 
      <td> Row 1</td> 
 
      <td> Row !</td> 
 
      <td> Row 1</td> 
 
     </tr> 
 
    </tbody> 
 
</table>