The HTML tbody charoff Attribute is used to sets the number of characters that aligned the characters specified by the char Attribute. This attribute can only be used in the char attribute and align attribute is specified in the tbody Element.
Note: This attribute is not supported by HTML5.
Syntax:
<tbody charoff="number">
Attribute Values:
- number: It contains the numeric value which specify the alignment.
- Positive values: indicate the alignment to the right of the characters.
- Negative values: indicate the alignment to the left of the characters.
Example:
<!DOCTYPE html>
< html >
< head >
< title >html tbody charoff Attribute</ title >
< style >
body {
text-align: center;
}
h1 {
color: green;
}
th {
color: blue;
}
table,
tbody,
td {
border: 1px solid black;
border-collapse: collapse;
}
</ style >
</ head >
< body >
< center >
< h1 >GeeksforGeeks</ h1 >
< h2 > HTML tbody charoff Attribute</ h2 >
< table >
< thead >
< tr >
< th >Name</ th >
< th >User Id</ th >
</ tr >
</ thead >
< tbody align = "char" char = "." charoff = "2" >
< tr >
< td >Shashank</ td >
< td >@shashankla</ td >
</ tr >
< tr >
< td >GeeksforGeeks</ td >
< td >@geeks</ td >
</ tr >
</ tbody >
</ table >
</ center >
</ body >
</ html >
|
Output:

Supported Browsers: The browsers supported by HTML tbody charoff Attribute are listed below:
- Google Chrome Not Supported
- Internet Explorer Not Supported
- Firefox Not Supported
- Apple Safari Not Supported
- Opera Not Supported
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
22 Feb, 2022
Like Article
Save Article