Latest

recent

HTML tbody char attribute

Example

The following HTML table aligns the content inside the tbody element to the "." character:
<table border="1" width="100%">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tbody align="char" char=".">
    <tr>
      <td>January</td>
      <td>$100.00</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80.00</td>
    </tr>
  </tbody>
</table>


Definition and Usage

The char attribute specifies the alignment of the content inside the tbody element 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 current language.

Browser Support

Note: The char attribute is not supported by any of the major browsers.

Syntax

<tbody char="value">

Attribute Values

Value Description
character Specifies the character to align the content to
HTML tbody char attribute Reviewed by 1000sourcecodes on 01:46 Rating: 5
Powered by Blogger.