Forum Moderators: not2easy
Since it takes a fairly large font-size to render properly, I wonder if I can nest some font calls, with their font size requirement.
I don't think I can use font-family, but maybe font size (although I haven't had any luck so far).
i.e.
font-size: Brush Script MT 18px, Arial 12px, Verdana 12px;
(which does not work)
Any suggestions - or am I out of luck?
Thanks
Ron
I think it'll do what you seek to have.
For now I don't know of implementations of this yet, so you might need to resort to javascript or so to get it done if you need it.
There is a generic "fantasy" font that browsers should define already.
And hence you might try to load up your font-family with a number of script fonts that all need a larger size to be readable, to improve the odds that one of the fonts is actually available.
I'd try something like
font-family: "Brush Script MT" Mistral "Comic Sans MS" "Marker Felt"
"Edwardian Script ITC" "Lucida Handwriting" fantasy;
font-size: 18px;
(quite a few above come along with Microsoft Office)