I just wanted to know why {font:inherit;} is used in Cascading Style Sheets.
|
|
Here
|
|||||||||||
|
|
|
The The default property is
Now you give a style:
That |
|||
|
|
|
Like the other answers have said, it’s to inherit a CSS property from the parent element. What the other answers have failed to say is why you’d need this. Because, after all, CSS properties are inherited anyway, right? Well, no. Most are, by default (but link colour isn’t inherited from the parent element, for instance). But consider this case:
Now the text will be blue, not red. If we want the
|
|||||||||||||||
|
|
Not all browsers inherit font properties on all elements. Netscape 4.x was notoriously bad about about inheritance. Consider the following style:
In Netscape 4.x, the color was not applied to table elements, so you would end up with the default black text inside the table on a black background. Font properties have the same kind of deal for some elements, particularly form elements (and table elements for older browsers). It's not uncommon to see a definition like this:
|
||||
|
|
|
The declaration Several HTML elements have a default rendering in browsers as regards to font properties: headings, form fields, table header cells, some phrase elements, etc. Using CSS Reset, or specifically So this is about a particular methodology (or, as some people might say, ideology or religion) of authoring and design. It has gained popularity and often applied routinely. |
|||
|
|

