• 1 滑动门


    用到的背景图片

    1 滑动门

    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
            .nav {
                 800px;
                margin: 100px auto;
            }
    
            a {
           //我们是滑动门,宽度是内容撑开的 所有这里必须用 行内块元素 display: inline
    -block; height: 33px; background: url(image/to.png) no-repeat; padding-left: 15px; line-height: 33px; color: white; } a span { display: inline-block; height: 33px;
           //这里的背景图片需要右对齐 background: url(image
    /to.png) no-repeat right top; padding-right: 15px; } </style> </head> <body> <div class="nav"> <a href=""><span>首页</span></a> <a href=""><span>公司简介</span></a> </div> </body> </html>

    原理:

    a 标签设置左边的背景,padding撑开合适宽度

    span 标签设置右边的背景,padding撑开合适宽度,剩下的由文字继续撑开宽度

    之所以a包含span是因为 整个导航都是可以点击的

  • 相关阅读:
    穷举、迭代、以及while代替for循环的使用
    for循环与for循环嵌套
    day07 数据类型补充
    day06
    day05
    day04
    python2 和 python3 的区别
    day03
    第一周笔记
    day02笔记
  • 原文地址:https://www.cnblogs.com/fuyunlin/p/14343045.html
Copyright © 2020-2023  润新知