其他分享
首页 > 其他分享> > 案例:仿写小米导航栏

案例:仿写小米导航栏

作者:互联网

仿写小米导航栏

效果展示:

代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>小米导航栏</title>
    <style>
        a{
            /*宽*/
            width: 230px;
            /*高*/
            height: 40px;
            /*背景颜色*/
            background-color: gray;
            /*转换成块级元素*/
            display: block;
            /*字体颜色*/
            color: white;
            /*字体大小*/
            font-size: 14px;
            /*去除a标签的下划线*/
            text-decoration: none;
            /*文本缩进*/
            text-indent: 2em;
            /*行高 文字垂直居中*/
            line-height: 40px;
        }
        /*鼠标悬停时的设置*/
        a:hover{
            background-color: orange;
        }
    </style>
</head>
<body>
    <a href="">手机</a>
    <a href="">电视</a>
    <a href="">笔记本 平板</a>
    <a href="">家电</a>
    <a href="">出行 穿戴</a>
    <a href="">智能 路由器</a>
    <a href="">电源 配件</a>
    <a href="">健康 儿童</a>
    <a href="">耳机 音响</a>
    <a href="">生活 箱包</a>
</body>
</html>

标签:40px,仿写,color,小米,height,text,导航
来源: https://www.cnblogs.com/Pork-belly8/p/16188911.html