HTML | <thead> char Attribute Last Updated : 14 Oct, 2019 Comments Improve Suggest changes Like Article Like Report The HTML thead char Attribute is used to specify the alignment to the character of content in a thead Element. This attribute can only be used if the align attribute is set to "char". Its default value is a decimal point for page language. It is not supported by HTML 5. Syntax: <thead char="character"> Attribute Values: character: It is used to specify the character to the align the content. Example: html <!DOCTYPE html> <html> <head> <title>thead char Attribute</title> <style> h1 { color:green; } thead { color:blue; } table, tbody, td { border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2> HTML thead char Attribute</h2> <table> <!-- thead tag starts from here --> <thead align="char" char="M"> <tr> <th>Name</th> <th>User Id</th> </tr> </thead> <!-- thead tag ends here --> <tbody> <tr> <td>Ram</td> <td>@ram_b</td> </tr> <tr> <td>Shashank</td> <td>@shashankla</td> </tr> </tbody> </table> </center> </body> </html> Output : Supported Browsers: The <thead> char Attribute is not supported by any major browsers. Comment More infoAdvertise with us Next Article HTML | <thead> char Attribute M manaschhabra2 Follow Improve Article Tags : HTML HTML-Attributes Similar Reads HTML | <thead> charoff Attribute The HTML <thead> 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 thead Element. Syntax: <thead charoff="number"> Attribute 2 min read HTML | <td> char Attribute The HTML <td> char Attribute is used to specify the alignment to the character of content in a table cell. This attribute only contains char align attribute. Its default value is a decimal point for page language. It is not supported by HTML 5. Syntax: <td char="character"> Attribute Val 1 min read HTML <th> char Attribute The HTML <th> char attribute is used to specify the alignment to the character of content in a table header cell. It only contains the char align attribute. Its default value is a decimal point for page language. Note: It is not supported by HTML5. Syntax: <th char="character"> Attribute 1 min read HTML <th> charoff Attribute The HTML th 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 th Element. Note: The th charoff attribute is not supported by HTML 5. Syn 1 min read HTML <td> charoff Attribute The HTML <td> charoff attribute specifies the offset for aligning text around a specified character within a table cell. It is used with the char attribute and is now considered obsolete in modern HTML. This attribute can only be used in the char attribute and the align attribute is specified 2 min read Like