a僞類

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>a標籤僞類</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="布爾教育 http://www.itbool.com" />
<style>
    a:link{
        color: gray;
    }
    a:visited{
        color: green;
    }
        
    a:hover{
        color: orange;
    }
    
    a:active{
        color: black;
    }
</style>
</head>
    <body>
        <p>a標籤的四種狀態稱爲僞類 <p>
            <p>--link--常規狀態----visited點擊過的 --hover是指鼠標放上去的狀態----active點擊的一瞬間(通常不寫) </p>
            <p>有順序 LVHA  ,,,a link能夠簡寫爲a</p>
        <div>
            <a href="#">空標籤</a>
            <a href="#">空標籤</a>
            <a href="#">空標籤</a>
            <a href="#">空標籤</a>
        </div>
    </body>
</html>html

相關文章
相關標籤/搜索