Open In App

HTML <table> summary Attribute

Last Updated : 04 Oct, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <table> summary attribute provides a brief description of the table's structure and content for accessibility purposes. It is primarily used by screen readers.

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: In this example we demonstrates the use of the summary attribute in a table, providing a description of its content. It displays details about an author with name, age, and branch.

html
<!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:


Next Article

Similar Reads