CSS text-align-last 属性

CSS 参考手册 CSS 参考手册


把段落的最后一行向右对齐:

<!DOCTYPE html>
<html>
<head>
  <style>
    div {
      text-align: justify;
      text-align-last: right;
      -moz-text-align-last: right;
      /* 针对 Firefox 的代码 */
    }
  </style>
</head>

<body>
  <div>
    You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property.
  </div>

  <p><b>注意:</b>只有 Internet Explorer 支持 text-align-last 属性。</p>
  <p><b>注意:</b>Firefox 支持另一个可替代该属性的属性,即 -moz-text-align-last 属性。</p>

</body>
</html>

尝试一下 »


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

只有 Internet Explorer 支持 text-align-last 属性。

Firefox 支持另一个可替代该属性的属性,即 -moz-text-align-last 属性。

Internet Explorer 不支持 "start" 和 "end" 值。


定义和用法

text-align-last 属性规定如何对齐文本的最后一行。

注意:text-align-last 属性只有在 text-align 属性设置为 "justify" 时才起作用。

<!DOCTYPE html>
<html>
<head>
  <style>
    #myDIV {
      text-align: justify;
    }
  </style>
</head>
<body>

  <div id="myDIV">
    You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property. You can use the text-align-last property to align the last line of a text, if the text has the text-align property set to justify. This text is where you will see the result of the text-align-last property.
  </div>

  <p>点击“尝试一下”按钮,改变 DIV 元素的 text-align-last 属性。</p>

  <button onclick="myFunction()">尝试一下</button>

  <script>
    function myFunction() {
      document.getElementById("myDIV").style.textAlignLast = "right";
      document.getElementById("myDIV").style.MozTextAlignLast = "right"; // 针对 Firefox 的代码
    }
  </script>

  <p><b>注意:</b>目前只有 Internet Explorer 支持 textAlignLast 属性。</p>
  <p><b>注意:</b>Firefox 支持另一个可替代该属性的属性,即 MozTextAlignLast 属性。</p>

</body>
</html>

尝试一下 »

默认值: auto
继承:
可动画化: 否。请参阅 可动画化(animatable)
版本: CSS3
JavaScript 语法: object.style.textAlignLast="right" - 尝试一下 -

CSS 语法

text-align-last: auto|left|right|center|justify|start|end|initial|inherit;

属性值

描述 测试
auto 默认值。最后一行被调整,并向左对齐。 测试 »
left 最后一行向左对齐。 测试 »
right 最后一行向右对齐。 测试 »
center 最后一行居中对齐。 测试 »
justify 最后一行被调整为两端对齐。 测试 »
start 最后一行在行开头对齐(如果 text-direction 是从左到右,则向左对齐;如果 text-direction 是从右到左,则向右对齐)。 测试 »
end 最后一行在行末尾对齐(如果 text-direction 是从左到右,则向右对齐;如果 text-direction 是从右到左,则向左对齐)。 测试 »
initial 设置该属性为它的默认值。请参阅 initial 测试 »
inherit 从父元素继承该属性。请参阅 inherit

CSS 参考手册 CSS 参考手册