码迷,mamicode.com
首页 > 其他好文 > 详细

链接属性

时间:2017-02-14 19:13:07      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:family   ble   .com   htm   类别   :link   淘宝   sea   ora   

链接属性

百度 淘宝 京东
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>链接属性</title>
    <style>
        table{
            font-family: "楷体";
            font-size: 33px;
            width: 280px;
            text-align: center;
            border-collapse: collapse;
            background-color: lightsteelblue;
        }
        /*按照 a:link, a:visited, a:hover,a:active顺序写*/
        /*伪类别选择器*/
        /*普通样式*/
        a:link,a:visited{
            color: darksalmon;
            background-color: lightsteelblue;
            text-decoration: none;
        }
        /*访问过的样式*/
        /*a:visited{
            color: darksalmon;
            background-color: lightsteelblue;
            text-decoration: none;

        }*/
        /*鼠标悬浮在上面的样式*/
        a:hover{
            color: lightslategray;
            background-color: seagreen;
        }
        /*激活状态的样式*/
        a:active{
            color: red;
            background-color: black;
        }
    </style>
</head>
<body>
    <table>
        <tr>
            <td>
                <a href="http://www.baidu.com">百度</a>
                <a href="http://www.taobao.com">淘宝</a>
                <a href="http://www.JD.com">京东</a>
            </td>
        </tr>
    </table>
</body>
</html>

  

链接属性

标签:family   ble   .com   htm   类别   :link   淘宝   sea   ora   

原文地址:http://www.cnblogs.com/john568300/p/6398653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!