td rowspan='' - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:td

Description

td rowspan=''

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
   <head> 
      <title>Example</title> 
      <meta name="author" content="java2s.com"> 
      <meta name="description" content="A simple example"> 
      <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> 
      <style>
td {border: thin solid black; padding: 5px; font-size:x-large};

      </style> 
   </head> 
   <body> 
      <table> 
         <tbody>
            <tr> 
               <td>1</td> 
               <td rowspan="3">2</td> 
               <td>3</td> 
            </tr> 
            <tr> 
               <td>4</td> 
               <td>6</td> 
            </tr> 
            <tr> 
               <td>7</td> 
               <td>9</td> 
            </tr> 
         </tbody>
      </table>  
   </body><!--  w  w  w .j  av  a  2 s .co  m-->
</html>

Related Tutorials