Current location - Plastic Surgery and Aesthetics Network - Wedding supplies - The word < diamond > was originally white. How to change the color back to other colors after making pop-up menu with Macromedia Dreamweaver 8?
The word < diamond > was originally white. How to change the color back to other colors after making pop-up menu with Macromedia Dreamweaver 8?
A: I visited {color:wihte;; }

There are four pseudo-classes in CSS to define the style of links, namely: a:link, a:visited, a:hover and a: active, for example:

a:link { font-weight:bold; Text decoration: none; Color: # c00}

A: I have visited {font-weight: bold; Text decoration: none; Color: # c30}

a:hover { font-weight:bold; Text decoration: underline; Color: # f60}

A: active {font-weight: bold; Text decoration: none; Color: # F90}

The above statements define the styles of "link, visited link, mouse over, mouse down" respectively. Please note that you must write in the above order, otherwise the content displayed may be different from what you expected. Remember that their order is "LVHA".