Thomas: CSS?

Beitrag lesen

Hi Ashura,

ist das richtig:

global:

a.testlink{
          font-weight:normal; color:#cacaca; border-bottom:dashed 1px blue; text-decoration:none;}
        a.testlink:visited{
          font-weight:normal; color:#cacaca; border-bottom:dashed 1px blue; text-decoration:none;}
        a.testlink:focus{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}
        a.testlink:hover{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}
        a.testlink:active{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}

individuell:

a#link{
          font-weight:normal; color:red; border-bottom:dashed 1px blue; text-decoration:none;}
        a#link:visited{
          font-weight:normal; color:red; border-bottom:dashed 1px blue; text-decoration:none;}
        a#link:focus{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}
        a#link:hover{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}
        a#link:active{
          font-weight:normal; color:#74c44d; border-bottom:dashed 1px blue; text-decoration:none;}