I have the following HTML and CSS codes :
HTML :
<div>
<a href="#">ITALIANO</a>
<a href="#">ENGLISH</a>
<a href="#">FRANÇAIS</a>
<a href="#">DEUTSCH</a>
</div>
CSS :
div>a{
margin-left: 30px;
}
div{
font-size: 28px;
width: 70%;
margin: 2% auto;
}
There is no problem at normal zoom. The problem appears when I zoom in and out, as the text gets too big which makes it use two lines, or gets too small. Is there any way to adjust the font size dymamically without JavaScript?
Thanks