The tag selector (CSS tag selector)

All labels are matched based on the same type of HTML tag names.

Such body, p paragraph tag, div like.

{P 
font-size: 14px; / * * font size 14px? 
Color: # 4444; / * Font color is dark gray * / 

}

There is also a selector label * wildcard to match all tags style

*{
margin:0;
padding:0;

}

2019-08-23   22:36:33

Guess you like

Origin www.cnblogs.com/qf928/p/11403004.html