CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

Link Styling

Link Styling

 

 

Links can be styled with any CSS property. Styled links help users to navigate faster and with accuracy to the desired web pages. 

 

Pseudo-selectors available for link styling are:-

 

  • a:link:- defines the style for normal unvisited links
  • a:visited:- defines the style for visited links
  • a:active:- a link becomes active once you click on it
  • a:hover:- a link hovers when the mouse is over it

 

Syntax:-

 

Its syntax is:-

< style >

a:link { color: red; }

a:visited { color: green; }

a:active { color: blue; }

a:hover { color: yellow; }

< /style >

Code Explanation

All Tutorials related to CSS Advance

All Sections related to CSS