I have a page where links overflow the page. I wish they would stay on the line below.
I put the follow lines:
display:inline-block; overflow: auto;
But didn't work.
.hashtag {
font-family: 'Titillium Web', sans-serif;
padding: 28px;
font-size: 30px;
width: auto;
text-align: center;
text-decoration: none;
margin: 5px 2px;
background-color: rgb(98,124,169,0.8);
color: white;
display: inline-block;
line-height: 1;
<a style="background-color: rgb(98,124,169,0.8); color: white; cursor: pointer;line-height: 1;" class="hashtag" id="load2">TODAY</a> <a style="background-color: rgb(98,124,169,0.8); color: white; cursor: pointer;overflow: auto;" class="hashtag" id="load3">LIVE</a> <a href="player-hd/podcasts.html" style="background-color: rgb(98,124,169,0.8); color: white; cursor: pointer;line-height: 1;overflow: auto;" class="hashtag">PODCASTS</a>
(Sorry my English) Thanks in advance.