Question about CSS and links

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Question about CSS and links

    Im vondering, is there any way to put links trought CSS style, i've seen some on wen.ru guestbooks.

    If anyjone know, please tell me how to do it?

    #2
    a:visited { xxxxxxx } # a link to a page you have already been to uses this css
    a:active { xxxxxxx } # clicking a link makes it active
    a:hover { xxxxxxx } # hover over link
    a:link { xxxxxxxx } # standard state of a link

    most commonly you would do

    a {color: red; text-decoration: none; }
    a:hover { color: blue; text-decoration: underline }

    This would make all links blue with no underline until you hover over them when they will turn blue with a underline.

    Comment


      #3
      put links, or change liks colors?
      mysterio.al - programming is a functional art

      Comment

      Working...
      X