0
是否可以使單個單詞如「新聞」使寬度達到100%。 我需要的是設置自動字母間距,證明單的話,我有菜單中包含項目:使單個單詞達到100%寬度
- 首頁
- 關於
- 新聞
- 等
我想讓它們填滿100%寬度
<div class="links">
<a class="home" href="/home">Home</a>
<a class="about" href="/about">About</a>
<a class="news" href="/news">News</a>
</div>
.links {
clear: both;
overflow: hidden;
padding: 0 20px;
width: 200px;
}
你能分享你的代碼嗎? –