Split table row into two rows - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Row

Description

Split table row into two rows

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from  w  w w  .j a v a2  s . co  m-->
 <body> 
  <table border="1" width="100%"> 
   <tbody> 
    <tr> 
     <td>Lorem</td> 
     <td>Lorem</td> 
    </tr> 
    <tr> 
     <td colspan="2">Lorem </td> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials