CSS超連結a標籤的四種狀態屬性設定

來源:互聯網
上載者:User
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>超連結</title>    <style>        a{            text-decoration: none;        }        /*預設狀態*/        p a:link{            color: blue;        }        /*訪問後得狀態*/        p a:visited{            color: #19242C;        }        /*滑鼠懸浮狀態*/        p a:hover{            color: #FF0000;        }        /*點擊狀態*/        p a:active{            color: aqua;        }    </style></head><body><p>    <a href="http://huodong.paperyy.com/?v=ixueshu#top">dsk</a></p></body></html>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.