久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html中如何設(shè)置超鏈接的樣式

      html中如何設(shè)置超鏈接的樣式

      設(shè)置超鏈接的樣式示例:

      a:link 超鏈接被點(diǎn)前狀態(tài)

      a:visited 超鏈接點(diǎn)擊后狀態(tài)

      a:hover 懸停在超鏈接時(shí)

      a:active 點(diǎn)擊超鏈接時(shí)

      在定義這些狀態(tài)時(shí),有一個(gè)順序l v h a。

      (推薦教程:html教程)

      代碼區(qū):

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">  <head>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <title>無(wú)標(biāo)題文檔</title>    <style type="text/css">   a:link    {        color:#000;        text-decoration:none;}    a:visited    {        color:#000;        text-decoration:none;}    a:hover    {        color:#F00;        text-decoration:underline;}    a:active    {        color:#F90;        text-decoration:underline;}    </style>    <link href="Untitled-1.css" rel="stylesheet" type="text/css" />   </head>   <body>    <a href="http://www.baidu.com/">百度一下</a>     </body> </html>

      運(yùn)行顯示:鼠標(biāo)箭頭未放到“百度一下”,其顯示黑色——放上時(shí),其顯示紅色——點(diǎn)擊“百度一下”鏈接時(shí),其顯示橙色——點(diǎn)擊后,其顯示黑色。

      相關(guān)視頻教程推薦:html視頻教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)