• 布局总结七:左右两端对齐


    效果图

    1.html布局代码

            <div class="header_top">
                <div class="container">
                    <div class="con_left">
                        <a href="javascript:;">首页</a>
                        <a href="javascript:;">MIUI</a>
                        <a href="javascript:;">云服务</a>
                        <a href="javascript:;">协议规则</a>
                    </div>
    
                    <div class="con_right">
                        <a href="javascript:;">登录</a>
                        <a href="javascript:;">注册</a>
                        <a href="javascript:;" class="cart_a">
                            <span class="icon"></span>
                            <span class="cart">购物车</span>
                            <span is="cartcount">(0)</span>
                        </a>
                    </div>
                </div>
            </div>

    2.css代码

        .header_top{
            background: $colorB;
            height: 39px;
            line-height: 39px;
            .container{
                @include flex(space-between, center);
                a{
                    display: inline-block;
                    color: #B0B0B0;
                    margin-right: 17px;
                    span{
                        display: inline-block;
                        vertical-align: middle;
                    }
                    .icon{
                        @include imgIcon(16px, 12px, "/imgs/icon-cart.png");
                        margin-right: 2px;
                        margin-top: -2.5px;
                    }
                }
                a:hover{
                    color: #fff;
                }
                a.cart_a{
                    margin-right: 0;
                    padding: 0 20px;
                    background: $colorC;
                }
            }
        }

    其中imgIcon函数和flex函数作为mixin引入的,如下

    @mixin flex($justify:center,$align:center){
        display:flex;
        justify-content:$justify;
        align-items: $align;
    }
    
    @mixin imgIcon($w:0,$h:0,$url:'',$position:center,$size:cover){
        display:inline-block;
        width:$w;
        height:$h;
        background-image:url($url);
        background-repeat:no-repeat;
        background-position:$position;
        background-size:$size;
    }
  • 相关阅读:
    对NETIF_F_GSO的一些理解
    关于ptype_all和pypte_base中的pt_prev的说明[转]
    linux网络收包过程
    linux的pci驱动模型
    linux内核的冷热页分配器
    linux的bootmem内存管理
    GitHub 下载代码命令并且导入到IDEA环境
    配置Log4j(非常具体)
    sudo:有效用户 ID 不是 0,sudo 属于 root 并设置了 setuid 位吗?
    RMP和YUM软件安装
  • 原文地址:https://www.cnblogs.com/pwindy/p/15190834.html
Copyright © 2020-2023  润新知