I'm making a webpage in a language other that English.
So the text contains English and other languages mixed.
I assigned font-family like
p{
font-family: 'EnglishFont', 'NonEnglishFont';
font-size:14px;
}
It works fine, but the original vector size of the fonts differs, causing the sentence looks weird in mixed languages.
so I want to assign different size for font in one css class, something like
p{
font-family: 'EnglishFont', 'NonEnglishFont';
font-size:14px, 16px;
}
is there any way to do that?