Adding Some Longer Cell Content - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:td

Description

Adding Some Longer Cell Content

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <title>Example</title> 
   </head> 
   <body> 
      <table> 
         <tbody>
            <tr> 
               <td>Col 1</td> 
               <td>Col 2</td> 
               <td>Col 3</td> 
            </tr> 
            <tr> 
               <td>Col 1</td> 
               <td>Col 2</td> 
               <td>Col 3</td> 
            </tr> 
            <tr> 
               <td>Col 1</td> 
               <td>Col 2</td> 
               <td>Col 3 this is a test this is a test</td> 
            </tr> 
         </tbody>
      </table>  
   </body><!--from   w  w  w.j a va  2  s .c  om-->
</html>

Related Tutorials