CSS Selectors

The Universal Selector *{ } It is universal selector which select all the elements. The Attribute Selector This allows to select elements based upon the particular attribute Input [type= “email”] { } Email, checkbox, text, password are included in it. We have others attributes a[href*= “wiki”] { Color: blue; } a[href^=” #”] { Color: gold; […]