Prev Next

Web / HTML Interview questions

What are the common CSS pseudo classes for formatting links.

A link that hasn't been visited. Blue is the default color. visited A link that has been visited. Purple is the default color. :hover An element with the mouse hovering over it. Hover has no default color. :focus An element like a link or form control that has the focus. :active An element that's currently active. Red is the default color. The properties for removing underlines and borders
NameDescription
:link.
a:link {
 color: green;
}
a:hover, a:focus {
 text-decoration: none;
 font-size: 110%;
}

More Related questions...

Show more question and Answers...


Comments & Discussions