超链接伪类

阴影

/*text-shadow: 阴影颜色,水平偏移,垂直偏移,阴影半径*/
        #price{
            text-shadow: aquamarine 10px 10px 2px;
        }

超链接伪类

正常情况下,a,a:hover

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*默认的颜色*/
        a{
            text-decoration: none;
            color: black;
        }
        /*鼠标悬浮的状态(只需要记住hover)*/
        a:hover{
            color: orange;
            font-size: 30px;
        }
        /*鼠标按住未释放的状态*/
        a:active{
            color: green;
        }
        /*已访问过的状态*/
        a:visited{
            color: yellow;
        }
        /*text-shadow: 阴影颜色,水平偏移,垂直偏移,阴影半径*/
        #price{
            text-shadow: aquamarine 10px 10px 2px;
        }
    </style>

</head>
<body>

<a href="#">
    <img src="images/b.png" alt="">
</a>

<p>
    <a href="#">码出高效:Java开发手册</a>
</p>
<p>
    <a href="">作者:孤尽老师</a>
</p>
<p id="price">
    ¥99
</p>
</body>
</html>

 

posted @ 2022-03-08 23:29  少时凌云志  阅读(33)  评论(0)    收藏  举报