I am designing a website in a language other than English.
This means that the text on the webpage will be a mixture of English and other languages.
In order to make sure the text displays correctly, I have set the font-family like this:
p{
font-family: 'EnglishFont', 'NonEnglishFont';
font-size:14px;
}
Everything looks good so far, but I have noticed that the original sizes of the fonts are different, which can make sentences look inconsistent when using mixed languages.
Therefore, I would like to assign different font sizes within the same CSS class. Is there a way to do this?