Here are the HTML and CSS codes I am currently using:
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;
}
When zooming in or out, the text size becomes problematic by either wrapping to two lines or becoming too small. Is there a way to dynamically adjust the font size without using JavaScript?
Thank you