Is it feasible to expand a single word like "News" to occupy 100% width of the div element? My goal is to automatically adjust letter spacing and justify individual words. Currently, I have a menu with items such as:
- Home
- About
- News
- Etc
It would be ideal to have these items fill up 100% of the width.
<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;
}