小码哥的IT人生

HTML DOM textAlign 属性

JavaScript基础 2022-06-08 14:52:03小码哥的IT人生shichen

HTML DOM textAlign 属性

定义和用法

textAlign 属性对齐元素中的文本。

语法:

Object.style.textAlign=left|right|center|justify

可能的值

描述
left 把文本排列到左边。默认值:由浏览器决定。
right 把文本排列到右边。
center 把文本排列到中间。
justify 根据 textJustify 属性对齐文本。

实例

本例对齐一段文本:

<html>
<head>
<script type="text/javascript">
function setTextAlign()
{
document.getElementById("p1").style.textAlign="right";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setTextAlign()"
value="Align text" />
</body>
</html>

TIY

完整实例【textAlign - 对齐一段文本】:

<html>
<head>
<script type="text/javascript">
function setTextAlign()
{
document.getElementById("p1").style.textAlign="right";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph.</p>
<input type="button" onclick="setTextAlign()" value="Align text" />
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024