A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-td-char-attribute/ below:

HTML | <td> char Attribute

HTML | <td> char Attribute

Last Updated : 20 Mar, 2023

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 Values:

Example: 

html
<!DOCTYPE html>
<html>

<head>
    <title>HTML td char Attribute</title>
</head>

<body>
    <h1>GeeksforGeeks</h1>

    <h2>HTML td char Attribute</h2>

    <table width="500" border="1">
        <tr>
            <th>Name</th>
            <th>Expenses</th>
        </tr>

        <tr>
            <td>BITTU</td>
            <td align="char" char=".">
              2500.00
          </td>
        </tr>

        <tr>
            <td>RAKESH</td>
            <td align="char" char=".">
              1400.00
          </td>
        </tr>
    </table>
</body>

</html>

Output: Supported Browsers: It is not supported by major browsers.



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4