清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>两端对齐</title>
<style>
li{overflow:hidden;width:200px;height:21px;text-align:justify;text-align-last:justify;}
li:after{display:inline-block;overflow:hidden;width:100%;height:0;content:'';}
</style>
</head>
<body>
<ul>
<li>我 是 第 一 行</li>
<li>我是第二行 还多了几个</li>
<li>没 错 我 就 是 第 三 行</li>
</ul>
</body>
</html>