<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>页面标题(w3cschool.cn)</title>
</head>
<style>
div.justify {
text-align: justify; width:200px; font-size:15px; color:red; border:1px solid blue; height:18px;
}
div.justify > span {
display: inline-block ; padding-left: 100%;
}
</style>
<body>
<form>
<div class="justify">hello, text justify.</div><br/>
<div class="justify"> hello, text justify.<span></span></div><br/>
<div class="justify">中 文 两 端 对 齐</div><br/>
<div class="justify">中 文 两 端 对 齐<span></span></div>
</body>
</html>