- HTML 教程
- HTML - 首页
- HTML - 路线图
- HTML - 简介
- HTML - 历史与演变
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块
- HTML - 样式表
- HTML - 格式化
- HTML - 引号
- HTML - 注释
- HTML - 颜色
- HTML - 图片
- HTML - 图片地图
- HTML - Iframes
- HTML - 短语元素
- HTML - 元标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表头和标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 邮件链接
- HTML 颜色名称和值
- HTML - 颜色名称
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 头部
- HTML - Head 元素
- HTML - 添加 Favicon
- HTML - Javascript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - 使用 CSS 进行布局
- HTML - 响应式
- HTML - 符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - Canvas
- HTML API
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 杂项
- HTML - 文档对象模型 (DOM)
- HTML - MathML
- HTML - 微数据
- HTML - IndexedDB
- HTML - Web 消息传递
- HTML - Web CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - 网页幻灯片
- HTML 工具
- HTML - Velocity Draw
- HTML - 二维码
- HTML - Modernizer
- HTML - 验证
- HTML - 颜色拾取器
- HTML 参考
- HTML - 速查表
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 码
- ASCII 表格查找
- HTML - 颜色名称
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- 语言 ISO 代码
- HTML - 字符编码
- HTML - 已弃用标签
- HTML 资源
- HTML - 快速指南
- HTML - 有用资源
- HTML - 颜色代码生成器
- HTML - 在线编辑器
HTML - DOM Style 对象 textAlignLast 属性
HTML DOM Style 对象的 **textAlignLast** 属性设置或返回文本最后一行对齐方式。
语法
设置 textAlignLast 属性object.style.textAlignLast= "auto | left | right | center | justify | start | end | initial | inherit";获取 textAlignLast 属性
object.style.textAlignLast;
属性值
值 | 描述 |
---|---|
auto | 这是默认值,其中最后一行是两端对齐并向左对齐。 |
left | 它将最后一行文本向左对齐。 |
right | 它将最后一行文本向右对齐。 |
center | 它将最后一行文本居中对齐。 |
justify | 通过插入空白来填充整个宽度,使最后一行两端对齐。 |
start | 它将最后一行文本对齐到行的开头,即如果文本方向为 ltr(从左到右),则为左对齐;如果文本方向为 rtl(从右到左),则为右对齐。 |
end | 它将最后一行文本对齐到行的末尾,即如果文本方向为 ltr(从左到右),则为右对齐;如果文本方向为 rtl(从右到左),则为左对齐。 |
initial | 用于将此属性设置为其默认值。 |
inherit | 用于继承其父元素的属性。 |
返回值
它返回一个字符串值,表示元素的文本最后一行对齐属性。
HTML DOM Style 对象“textAlignLast”属性示例
以下示例在方向为 ltr(从左到右)和 rtl(从右到左)时设置最后一行文本的对齐方式。
设置最后一行文本对齐方式
以下示例在方向为 ltr(从左到右)时将最后一行文本的对齐方式设置为 **right**、**center**、**justify** 和 **end**。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Style Object textAlignLast Property </title> <style> #align { border: 1px solid #04af2f; text-align: justify; } </style> </head> <body> <p>Click to change last line text alignment.</p> <button onclick="fun()">Right Align</button> <button onclick="funTwo()">Center Align</button> <button onclick="funThree()">Justify Align</button> <button onclick="funFour()">End</button> <div id="align"> <p> JavaScript is a lightweight, interpreted programming language. It is commonly used to create dynamic and interactive elements in web applications. JavaScript is very easy to implement because it is integrated with HTML. It is open and cross-platform. This JavaScript tutorial has been designed for beginners as well as working professionals to help them understand the basic to advanced concepts and functionalities of JavaScript. It covers most of the important concepts related to JavaScript such as operators, control flow, functions, objects, OOPs, Asynchronous JavaScript, Events, DOM manipulation and much more. </p> </div> <script> function fun() { document.getElementById("align") .style.textAlignLast = "right" } function funTwo() { document.getElementById("align") .style.textAlignLast = "center" } function funThree() { document.getElementById("align") .style.textAlignLast = "justify" } function funFour() { document.getElementById("align") .style.textAlignLast = "end" } </script> </body> </html>
设置最后一行文本对齐方式
以下示例在方向为 trl(从右到左)时将最后一行文本的对齐方式设置为 **start** 和 **justify**。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Style Object textAlignLast Property </title> <style> #align { border: 1px solid #04af2f; text-align: justify; direction: rtl; } </style> </head> <body> <p>Click to change last line text alignment.</p> <button onclick="funThree()">Justify Align</button> <button onclick="funFour()">Start</button> <div id="align"> <p> JavaScript is a lightweight, interpreted programming language. It is commonly used to create dynamic and interactive elements in web applications. JavaScript is very easy to implement because it is integrated with HTML. It is open and cross-platform. This JavaScript tutorial has been designed for beginners as well as working professionals to help them understand the basic to advanced concepts and functionalities of JavaScript. It covers most of the important concepts related to JavaScript such as operators, control flow, functions, objects, OOPs, Asynchronous JavaScript, Events, DOM manipulation and much more. </p> </div> <script> function funThree() { document.getElementById("align") .style.textAlignLast = "justify" } function funFour() { document.getElementById("align") .style.textAlignLast = "start" } </script> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
textAlignLast | 是 47 | 是 12 | 是 49 | 是 16 | 是 34 |
html_dom_style_object_reference.htm
广告