W3Schools.com

Style emptyCells Property

Style Object Reference Style Object

Definition and Usage

The emptyCells property sets or returns whether to show the border and background of empty cells, or not.

Syntax

Set the emptyCells property:

Object.style.emptyCells="show|hide|inherit"

Return the emptyCells property:

Object.style.emptyCells

Value Description
show Border and background are shown in empty cells
hide Border and background are hidden in empty cells
inherit The value of the emptyCells property is inherited from parent element


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The emptyCells property is supported in all major browsers.

Note: The default value is different in different browsers. In IE, Chrome and Safari, the default value is "show", while in Firefox and Opera the default value is "hide".

Note: The emptyCells property does not work in IE prior version 8. IE8 supports the emptyCells property only if a !DOCTYPE is specified.


Example

Example

Change how empty cells are shown:

<html>
<head>
<script type="text/javascript">
function show()
{
document.getElementById("myTable").style.emptyCells="show";
}
function hide()
{
document.getElementById("myTable").style.emptyCells="hide";
}
</script>
</head>
<body>

<table id="myTable" border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td></td>
  </tr>
</table>
<br />
<button type="button" onclick="show()">Show empty cells</button>
<button type="button" onclick="hide()">Hide empty cells</button>

</body>
</html>

Try it yourself »


Style Object Reference Style Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE