Explain universal selector.


The universal selector matches the name of any of the element type instead of selecting elements of a specific type.

<style>    
* {    
   color: green;    
   font-size: 20px;    
}     
</style>  

Leave a Reply

Your email address will not be published. Required fields are marked *