HTML <tfoot> with char Attribute
HTML <tfoot> with char Attribute
The char
attribute specifies a character to align the content inside <tfoot> element.
Note: The char
attribute can only be used if the align attribute is set to "char".
Warning: The char
attribute is deprecated and is no longer recommended.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<tr>
<th>Students</th>
<th>Count</th>
</tr>
</thead>
<tbody>
<tr>
<td>Math</td>
<td>85.25</td>
</tr>
<tr>
<td>Physics</td>
<td>75.25</td>
</tr>
</tbody>
<tfoot align="char" char=".">
<tr>
<td>Total</td>
<td>160.50</td>
</tr>
</tfoot>
</table>
</body>
</html>
Attribute Values
Name | Explanation |
---|---|
character | Specifies a character to align the content inside <tfoot> element. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.