css use universal 27 2a 27 selector vs html or body selector 3f

Solutions on MaxInterview for css use universal 27 2a 27 selector vs html or body selector 3f by the best coders in the world

showing results for - "css use universal 27 2a 27 selector vs html or body selector 3f"
Benjamín
28 Sep 2016
1
2
3Try something like this
4
5body { font-family: Verdana }
6table { font-family: Arial }
7
8against
9
10* { font-family: Verdana }
11table { font-family: Arial }
12
13And see which styles are applied to the cells of the table.
14
15There is a difference between "applied to the whole document" and "applied to every element of the document" when you're dealing with cascading stylesheets.
16
17Applying a cascading style to the body applies it to all tags within body until a tag overwrites it. Then the overwritten style is applied to all tags within that one.
18
19However, there are some styles that don't cascade, such as margin and padding (usually where it makes no sense to). Those can only be applied to specific tags and that's where a wildcard can come in useful (albeit rarely).
20
21Most non-cascading styles also have a value of inherit (eg. margin: inherit), which means "take the parent tag's values".
22