美文网首页
滑动门代码示例

滑动门代码示例

作者: 木子9268 | 来源:发表于2019-01-23 14:51 被阅读0次

    <!DOCTYPE html>

    <html lang="en">

    <head>

        <meta charset="UTF-8">

        <title>Document</title>

        <style>

            a{

                display: inline-block;

                height: 33px;

                background: url(images/left.png);

                padding-left: 15px;

                line-height: 33px;

                text-decoration: none;

                color: aliceblue;

                margin-left: 100px;

            }

            span{

                background: url(images/right.png);

                padding-right: 15px;

            }

        </style>

    </head>

    <body>

        <a href="#">

            <span>首页123123</span>

        </a>

    </body>

    </html>

    效果展示:

    滑动门使用原因:导航栏字数不一样。

    相关文章

      网友评论

          本文标题:滑动门代码示例

          本文链接:https://www.haomeiwen.com/subject/vggjjqtx.html