Open In App

HTML | <tfoot> align Attribute

The HTML <tfoot> align Attribute is used to set the horizontal alignment of text content inside the table footer (tfoot). It is not supported by HTML 5.

Syntax:



<tfoot align="left | right | center | justify | char">

Attribute Value:

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML tfoot align Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML tfoot align Attribute</h2>
  
    <table border="1" width="500">
        <tr>
            <th>NAME</th>
            <th>AGE</th>
            <th>SUBJECT</th>
        </tr>
  
        <tr>
            <td>BITTU</td>
            <td>22</td>
            <td>CSE</td>
        </tr>
  
        <tfoot align="center">
            <tr>
                <td>Name@123</td>
                <td>Age@123</td>
                <td>Branch@123</td>
            </tr>
        </tfoot>
    </table>
</body>
  
</html>

Output:



Supported Browsers: The browser supported by HTML <tfoot> align attribute are listed below:


Article Tags :