<!DOCTYPE html>
<html>
<head>
<style>
div.a {
text-align: justify;
-moz-text-align-last: right;
text-align-last: right;
}
div.b {
text-align: justify;
-moz-text-align-last: center;
text-align-last: center;
}
div.c {
text-align: justify;
-moz-text-align-last: justify;
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>