Search w3schools.com:

SHARE THIS PAGE

tr ch Property

tr Object Reference tr Object

Definition and Usage

The ch property sets or returns an alignment character for a table row.

The alignment of the contents of all cells in the same column depends on this character.

Syntax

Set the ch property:

trObject.ch="text"

Return the ch property:

trObject.ch

Tip: There is no default value for the ch property.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The ch property is supported in all major browsers. However, the functionality of this property is not implemented in any of the major browsers.


Example

Example

Align the "Savings" column to the "." character:

<html>
<head>
<script>
function displayResult()
{
var c=document.getElementById("myCol");
alert("The alignment character for the second column is: " + c.ch);
}
</script>
</head>
<body>

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

<button type="button" onclick="displayResult()">Get alignment character</button>

</body>
</html> 

Try it yourself »


tr Object Reference tr Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]