Skip to content
Related Articles
Open in App
Not now

Related Articles

HTML | <table> cellpadding Attribute

Improve Article
Save Article
  • Difficulty Level : Hard
  • Last Updated : 29 May, 2019
Improve Article
Save Article

The HTML <table> cellpadding Attribute is used to specify the space between the cell content and cell wall. The cellpadding attribute is set in terms of pixels.

Syntax:

<table cellpadding="pixels">

Attribute Values:

  • pixels: It holds the space between the cell content and cell wall in terms of pixels.

Note: The <table> cellpadding Attribute is not supported by HTML 5.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table cellpadding Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table cellpadding Attribute</h2>
  
    <table border="1" 
           cellpadding="15">
        <caption>Author Details</caption>
  
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>BRANCH</th>
        </tr>
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
        <tr>
            <td>RAM</td>
            <td>21</td>
            <td>ECE</td>
        </tr>
    </table>
</body>
  
</html>

Output:

Supported Browsers: The browser supported by HTML <table> cellpadding Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!