Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | <table> summary Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The HTML <table> summary Attribute is used to specify the summary of the table content.

Syntax:

<table summary="text">

Attribute Values:

  • text: It holds the summary of the table content.

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

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table summary Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table summary Attribute</h2>
  
    <table border="1" 
           summary="It describes the author details.">
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>BRANCH</th>
        </tr>
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
    </table>
</body>
  
</html>

Output:

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

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
My Personal Notes arrow_drop_up
Last Updated : 29 May, 2019
Like Article
Save Article
Similar Reads
Related Tutorials