Switch to full style
HTML code examples
Post a reply

hide cell in table

Sat Feb 25, 2012 10:08 pm

In this example we hide cells in the table using CSS.

Code:
<html>

<
head>
  <title>Control the style of table Cells</title>
   <style type="text/css">
table,td,th {
  border: 2px solid red;
}

 
td.NoneDisplay {
  display: none;
}

td.Hidden {
  visibility: hidden;
}
  </style>
</
head>

<
body>
<
table>
  <caption>Table with  hidden cell </caption>
  <tr>
    <td>Row 1 data1</td>
    <td class="Hidden"> Row 1 data2</td>
  </tr>
  <tr>
    <td>Row 2 data1</td>
    <td>Row 2 data2</td>
  </tr>
  <tr>
    <td>Row 3 data1</td>
    <td class="NoneDisplay">Row 3 data2</td>
  </tr>
  <tr>
    <td>Row 4 data1</td>
    <td>Row 4 data2</td>
  </tr>
</
table>

</
body>
</
html>
 




Post a reply
  Related Posts  to : hide cell in table
 Table with marked cell     -  
 Hide the content of the div     -  
 How can i hide all topics from Guests ?     -  
 Communication from pc to cell phone     -  
 Hide HTML Div using JavaScript     -  
 how to build cell phone app     -  
 hide paragraph using jquery     -  
 J2ME web cam view in my cell phone     -  
 Hide the background image by one click     -  
 search for string in a cell array     -  

Topic Tags

HTML Table