Answers

Question and Answer:

  Home  Web Designer

⟩ DEFINE selectors in CSS?

Selectors help to select an element to which you want to apply a style. For example below is a simple style called as 'intro" which applies red color to background of a HTML element.

cODE:

<style>

.intro

{

background-color:red;

}

</style>

 191 views

More Questions for you: