A universal selector is a selector that matches any element type’s name instead of selecting elements of a particular type.
Example:
<style>
* {
color: blue;
font-size: 10px;
}
</style>
A universal selector is a selector that matches any element type’s name instead of selecting elements of a particular type.
Example:
<style>
* {
color: blue;
font-size: 10px;
}
</style>
Leave a Reply