Horje
css - use universal '*' selector vs. html or body selector? Code Example
css - use universal '*' selector vs. html or body selector?


Try something like this

body { font-family: Verdana }
table { font-family: Arial }

against

* { font-family: Verdana }
table { font-family: Arial }

And see which styles are applied to the cells of the table.

There is a difference between "applied to the whole document" and "applied to every element of the document" when you're dealing with cascading stylesheets.

Applying 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.

However, 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).

Most non-cascading styles also have a value of inherit (eg. margin: inherit), which means "take the parent tag's values".




Css

Related
save css file to different folder in scss Code Example save css file to different folder in scss Code Example
flex item: 1; Code Example flex item: 1; Code Example
css() multiple Code Example css() multiple Code Example
change size Code Example change size Code Example
matplotlib doesn't plot [<matplotlib.lines.Line2D at 0x7f3543b113a0>] Code Example matplotlib doesn't plot [<matplotlib.lines.Line2D at 0x7f3543b113a0>] Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8