Search the Whole World Here.,.,

The class Attribute


To define a style for a special type of elements, add a class attribute to the element:
<p class="error">I am different</p>
then define a style for the elements with the specific class:

Example

p.error {
    color: red;
}
Try it Yourself »


EmoticonEmoticon