DEFINE selectors in CSS?

Submitted by: Murtaza
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>
Submitted by: Murtaza

Read Online Web Designing Job Interview Questions And Answers