merge fields into box in table on right side - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table

Description

merge fields into box in table on right side

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--   ww  w.  j a v  a2 s  .  c o m-->
 <body> 
  <table width="100%" border="1" class="table table-bordered"> 
   <tbody> 
    <tr> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
    </tr> 
    <tr> 
     <td colspan="2" rowspan="4">Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td colspan="2" rowspan="4">Lor</td> 
    </tr> 
    <tr> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
    </tr> 
    <tr> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
    </tr> 
    <tr> 
     <td>Lor</td> 
     <td>Lor</td> 
     <td>Lor</td> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials