Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
About Lesson
Tag selector / Type selector/Element Selector:-

            Tag selector को Type selector भी कहा जाता है। इससे हम किसी भी HTML tag को select करके उसमे CSS Style apply कर सकते है। यहा हम selector की जगह उस Tag का name लिख देते है जिसकी हमे Style change करनी है।

Syntax:

Element Name {                Property:value; ……………………

                         }

Example

p {
  text-align: center;
  color: red;
}

 

Tag selector / Type selector/Element Selector:-

                        Tag selector is also called Type selector. With this we can select any HTML tag and apply CSS Style to it. Here, instead of selector, we write the name of the tag whose style we want to change.

 Syntax:

Element Name {                Property:value; ……………………

                         }

Example

p {
  text-align: center;
  color: red;
}

error: Content is protected !!