欢迎访问服务器技术网-www.fuwuqijishu.com

td/th vAlign 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 44次浏览 0个评论 扫描二维码
文章目录[隐藏]

td/th vAlign 属性

td/th 对象


定义和用法

vAlign 属性设置或返回单元格内数据的垂直排列方式。

语法

设置 vAlign 属性:

tdObject.vAlign=”baseline|bottom|middle|top”

或者

thObject.vAlign=”baseline|bottom|middle|top”

返回 vAlign 属性:

tdObject.vAlign

或者

thObject.vAlign

描述
baseline 与基线对齐。
bottom 对内容进行下对齐。
middle 对内容居中对齐。
top 对内容进行上对齐。


浏览器支持

所有主流浏览器都支持 vAlign 属性


实例

实例

下面的例子更改了单元格内数据的垂直排列方式:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<script>
function displayResult(){
    document.getElementById(‘td1’).vAlign=”top”;
    document.getElementById(‘td2’).vAlign=”top”;
    document.getElementById(‘td3’).vAlign=”top”;
}
</script>
</head>
<body>

<table width=”50%” border=”1″>
    <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Text</th>
    </tr>
    <tr>
        <td id=”td1″>Peter</td>
        <td id=”td2″>Griffin</td>
        <td id=”td3″>你好,我的名字叫Peter,我需要一个长文本来演示,我需要一个长文本来演示。</td>
    </tr>
</table>
<br>
<button type=”button” onclick=”displayResult()”>内容向上对齐</button>

</body>
</html>


td/th 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2120.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900