<Table> cell rendering - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Cell

Description

<Table> cell rendering

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
table {<!-- w ww .j a v  a  2s. co  m-->
   overflow:hidden;
}

.block_out {
   min-height:11px;
}
</style> 
 </head> 
 <body> 
  <table width="100px"> 
   <tbody> 
    <tr> 
     <td valign="top" class="weekend_days"> 
      <div class="block_out"> 
       <div class="blockout_text">
         Lorem ipsum do 
       </div> 
      </div> </td> 
    </tr> 
    <tr> 
     <td valign="top" class="weekend_days"> 
      <div class="block_out"> 
       <div class="blockout_text">
         Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ullamcorper molesti 
       </div> 
      </div> </td> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials