The following CSS works well on IE and FireFox, but chrome marks it as "Invalid property value" -
TD.desc1_hp { font-family: Arial,Arial (Hebrew),David (Hebrew); }
any hint why?
Thanks,
Atara
The following CSS works well on IE and FireFox, but chrome marks it as "Invalid property value" -
TD.desc1_hp { font-family: Arial,Arial (Hebrew),David (Hebrew); }
any hint why?
Thanks,
Atara
Font faces should be enclosed in double quotes. Font faces with parentheses seem to require that. This works:
TD.desc1_hp { font-family: Arial, "Arial (Hebrew)", "David (Hebrew)"; }
© 2022 - 2024 — McMap. All rights reserved.
arial (hebrew)
will be present ifarial
is not? – Phytobiologyfont-family: default;
either... – Lomalomas