代码示例:(标识:cssref_text-align-last)
<!DOCTYPE html>
<html>
<head>
<style>
div.a {
  text-align: justify; /* For Edge */
  -moz-text-align-last: right; /* 针对 58.0 之前的 Firefox */
  text-align-last: right;
}

div.b {
  text-align: justify; /* For Edge */
  -moz-text-align-last: center; /* 针对 58.0 之前的 Firefox */
  text-align-last: center;
}

div.c {
  text-align: justify; /* For Edge */
  -moz-text-align-last: justify; /* 针对 58.0 之前的 Firefox */
  text-align-last: justify;
}
</style>
</head>
<body>

<h1>text-align-last 属性</h1>

<h2>text-align-last: right:</h2>
<div class="a">
  <p>Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to Shanghai!</p>
</div>

<h2>text-align-last: center:</h2>
<div class="b">
  <p>Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to Shanghai!</p>
</div>

<h2>text-align-last: justify:</h2>
<div class="c">
  <p>Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to Shanghai!</p>
</div>

</body>
</html>
运行结果: