首页 前端知识 h5导航跳色

h5导航跳色

2024-05-09 10:05:21 前端知识 前端哥 598 799 我要收藏

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style>
            .mm{
                color: aliceblue;
                width: 100px;
                height: 100px;
                background-color: darkred;
                /* a显示模式是行内模式,加宽高默认不生效,要转显示模式 */
                display: inline-block;
                /* 行高是上下文之间的距离,实际中他是50高度,而高度总和100,刚好位于中间 */
                line-height: 100px;
                text-align: center;
                text-decoration: none;
            }
            .mm:hover{
                background-color: aquamarine;
            }
        </style>
    </head>
    <body>
        <a href="#" class="mm">导航1</a>
        <a href="#" class="mm">导航2</a>
        <a href="#" class="mm">导航3</a>
        <a href="#" class="mm">导航4</a>
        <a href="#" class="mm">导航5</a>
    </body>
</html>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/7589.html
标签
评论
发布的文章

Unity读取Json的几种方法

2024-05-12 17:05:57

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!