Latest web development tutorials

HTML DOM td / th chOff property

td / th Object Reference td / th objects

Definition and Usage

chOff property sets or returns the offset of the cell alignment character.

grammar

Setting chOff properties:

tdObject.chOff="px|%"

或者

thObject.chOff="px|%"

Back chOff properties:

tdObject.chOff

或者

thObject.chOff

Tip: chOff property has no default value.

描述
px 定义了水平偏移,以像素为单位
% 使用百分比定义了水平偏移


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support chOff property, but without any major browser will perform the functions of this property.


Examples

Examples

. "" Right side "Savings" column from the alignment of two characters:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(){
    var c=document.getElementById("myCol");
    alert("ch属性的水平偏移为: " + c.chOff);
}
</script>
</head>
<body>

<table border="1">
    <colgroup>
        <col>
        <col id="myCol" align="char" char="." charoff="2">
    </colgroup>
    <tr>
        <th>月份</th>
        <th>存款</th>
    </tr>
    <tr>
        <td>January</td>
        <td>$100.00</td>
    </tr>
    <tr>
        <td>February</td>
        <td>$10.00</td>
    </tr>
</table>
<br>
<button type="button" onclick="displayResult()">字符对齐的水平偏移</button>
<p><b>注意:</b>不是所有主流浏览器都支持choff属性的功能。</p>

</body>
</html>

try it"


td / th Object Reference td / th objects