HTML <tbody> with charoff Attribute
HTML <tbody> with charoff Attribute
The charoff
attribute specifies the number of characters to offset the <tbody> data from the alignment characters specified by the char attribute.
Note: The charoff
attribute can only be used if the char attribute is specified and the align attribute is set to "char".
Warning: The charoff
attribute is deprecated and is no longer recommended.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<tr>
<th>Students</th>
<th>Mark</th>
</tr>
</thead>
<tbody align="char" char="." charoff="2">
<tr>
<td>Brendon</td>
<td>28.25</td>
</tr>
<tr>
<td>Eich</td>
<td>30.75</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>John</td>
<td>45.50</td>
</tr>
</tfoot>
</table>
</body>
</html>
Attribute Values
Name | Explanation |
---|---|
number | Specifies a number. A positive number will set the alignment to the right of the character. A negative number will set the alignment to the left of the character. |
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.