Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
CSS To Undo Font Family
Posted on 03/11/2014 at 10:55 pm by Kevin Wentworth
Viewed 8,883 times | 0 comments
This is a quick note about how to reset the font being applied to a particular CSS selector. I always forget about this, so I wanted to post my answer so I'll remember it.
Reset CSS Font-Family Declaration
The code is very easy. The only prerequisite is that you have defined the font-family you actually want to use at a higher level (or a less-specific CSS rule).
- font-family: inherit;
Best Practice: Define a Font on the Body Tag
If you define a font-family for your body tag, then any rule can be overridden and set back to the original font declaration using the inherit command. If you use your font-family tags sparingly, then the inherit command will be a useful tool for minimizing CSS coding to undo other CSS rules.
Cheers,
-Kevin Wentworth
Tags for CSS To Undo Font Family
Css | Web Design | Tutorial
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!