All You Need To Know About Css Selectors

How Easley a web page can be modified by selecting elements of Html

Table of contents

No heading

No headings in the article.

The easy way to target an html file by selectors there are multiple types of Css selectors the most popular ones are universal selectors class selectors id selectors and selectors sibling selectors child selectors

so now let talk about universal selectors here the entire page is use to be selected and then the benefit of selecting page is it removes the unwanted padding and margin of the default webpage

*{padding 0; margin0;

Now comes the most used Class selectors and Id selector for this we use . to select a particular class and # for id selection

.bns{ font-size: 4px; ccolor:red;}