Home > Article > Web Front-end > Summary of css wildcard usage
cssThe meaning of wildcard characters. Friends who learn css will often use the CSS wildcard character. This chapter will talk about css wildcard.
css Study Notes 1
<style type="text/css"><!-- * a,table,p{font-size:12px;} --></style>
Wildly match the font size of all text under a, table, p.
The following a, table, p play a limiting role.
<style type="text/css"><!-- * {font-size:12px;} --></style>
Wildcard the font size of all text under the body.
The above is all the content of this article, I hope it will be helpful to everyone's study!
Related recommendations:
Detailed explanation of the difference between CSS class selectors and ID selectors
About CSS clearing floating methods
A brief analysis of CSS loading and loading order
The above is the detailed content of Summary of css wildcard usage. For more information, please follow other related articles on the PHP Chinese website!