Latest web development tutorials

HTML tr char attribute

HTML tr tag Reference Manual HTML <tr> tag

Examples

. "" The contents of the second and third lines and character alignment:

<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr align="char" char=".">
<td>January</td>
<td>$100.00</td>
</tr>
<tr align="char" char=".">
<td>February</td>
<td>$10.00</td>
</tr>
</table>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Almost all of the major browsers do not support char attributes.


Definition and Usage

HTML5 does not support the <tr> char attributes.

char attribute specifies the contents of a table row in relative alignment of a character.

Only if the align attribute set to "char" when to use char property.

The default value is the decimal point character char attribute the current page language.


grammar

<tr char="character">

Property Value

描述
character 规定将内容与之对齐的字符。


HTML tr tag Reference Manual HTML <tr> tag