Basic to CSS and CSS Selector
What is CSS
- So, CSS is Cascading Style Sheets the language by which we instruct web browser to display particular HTML tags in a desired appearance or look.
- And to do that first of all we need to target those HTML tags which needs to be designed or style.
- The targeting of HTML tags can be done using CSS selectors which is most important part while doing CSS
CSS Selectors
Universal selector
As the name says universal , it is used to select all the tags on the HTML page and give them desired style. This is use when needed to have font, background-color ,etc of our web page to follow the same design all over the page.
- Reffer this code pen example