zoukankan      html  css  js  c++  java
  • 清浮动

    浮动本来是用在文字环绕图片,

    现在却被用来排版,替代很久以前的表格式排版。

    清除浮动两种方式,一种是在包裹浮动元素的大框加:after,

    <style type="text/css">
    .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    .clearfix {display: inline-block;}  /* for IE/Mac */
     
    </style><!-- main stylesheet ends, CC with new stylesheet below... -->
     
    <!--[if IE]>
    <style type="text/css">
    .clearfix {
    zoom: 1;     /* triggers hasLayout */
    <span style="color: #aa0000;">display: block;     /* resets display for IE/Win */</span>
    }  /* Only IE can see inside the conditional comment
    and read this CSS rule. Don't ever use a normal HTML
    comment inside the CC or it will close prematurely. */
    </style>
    <![endif]-->

    另一种是添加新元素,

    html body div.clear,
    html body span.clear
    {
         background: none;
         border: 0;
         clear: both;
         display: block;
         float: none;
         font-size: 0;
         margin: 0;
         padding: 0;
         overflow: hidden;
         visibility: hidden;
         width: 0;
         height: 0;
    }

    还有第三种方案,压根不用float,用inline-block来设置li元素或a元素。

    这点在m.tmall.com里面运用尤其明显。


    合乎自然而生生不息。。。
  • 相关阅读:
    swap函数的例子
    实现类似shared_ptr的引用计数
    使用new分配内存的类需要自己定义拷贝构造函数
    练习13.14 13.15 13.16
    查询单词,综合例子。
    无序容器
    关联容器操作
    关联容器概述
    文本查询程序
    shared_ptr与weak_ptr的例子
  • 原文地址:https://www.cnblogs.com/samwu/p/2802608.html
Copyright © 2011-2022 走看看