Open In App

HTML | <table> summary Attribute

Last Updated : 29 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads