CSS - text-align-last 属性



text-align-last 属性设置文本块最后一行文本的对齐方式。

可能的取值

  • auto: 根据 text-align 的值进行对齐。

  • start: 如果 directionltr,则左对齐;如果 directionrtl,则右对齐。

  • end: 如果 directionltr,则右对齐;如果 directionrtl,则左对齐。

  • left: 左边距对齐(向左)。

  • right: 右边距对齐(向右)。

  • center: 居中对齐。

  • justify: 两端对齐。

应用于

所有块级元素。

DOM 语法

object.style.textAlignLast = "start";

CSS text-align-last - 基本示例

这是一个示例

<html>
<head>
</head>
<body>
   <h2>Text Align Last</h2>
      <p style="text-align-last: left;">Text Alignment to Left.</p>
      <p style="text-align-last: right;">Text Alignment to Right.</p>
      <p style="text-align-last: center;">Text Alignment to Center.</p>
      <p style="text-align-last: start;">Text Alignment as start (left).</p>
      <p style="text-align-last: end;">Text Alignment as end (right).</p>
      <p style="text-align-last: justify; border: 2px solid red; width: 200px; height: 100px;">
         Text Justify Alignment. This alignment aligns the text based on both the margins, left and right.
      </p>
</body>
</html> 
广告