Link to home
Start Free TrialLog in
Avatar of Mike Eghtebas
Mike EghtebasFlag for United States of America

asked on

CSS - overwrite browser font...

How can I globally overwrite the font type and size so that the site will have similar look using different browsers.

body{
??
}

or html{
??
}

Thank you
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

body{
   font-size:14px!important;
}

Open in new window


But if you also use
body{
   font-size:14px!important;
}
p:font-size:18px!important;

Open in new window


The p tag will win.  Try placing your body{foo:bar!important;} as the very last css item.
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial