THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <td> char Attribute

HTML td Tag Reference HTML <td> tag

Example

Align the content of the "Savings" data cell to the "." character:

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td align="char" char=".">$100.00</td>
  </tr>
  <tr>
    <td>February</td>
    <td align="char" char=".">$10.00</td>
  </tr>
</table>
Try it yourself »

Definition and Usage

The <td> char attribute is not supported in HTML5.

The char attribute specifies the alignment of the content in a cell to a character.

The char attribute can only be used if the align attribute is set to "char".

The default value of char is the decimal-point character of the page language.


Browser Support

Attribute
char Not supported Not supported Not supported Not supported Not supported

Syntax

<td char="character">

Attribute Values

Value Description
character Specifies the character to align the content to

HTML td Tag Reference HTML <td> tag