清除浮动的7种方法

使用display:inline-block会出现的情况:

1.使块元素在一行显示

2.使内嵌支持宽高

3.换行被解析了

4.不设置的时候宽度由内容撑开

5.在IE6,7下步支持块标签

由于inline-block属性换行的时候被解析(有间隙)故解决方法使用浮动float:left/right

使用浮动时出现的情况:

1.使块元素在一行显示

2.使内嵌元素支持宽高

3.不设置不宽高的时候宽度由内容撑开

4.换行不被解析(故使用行内元素的时候清除间隙的方法可以使用浮动)

5.元素添加浮动,会脱离文档流,按照指定的一个方向移动,直到碰到父级的边界或者另一个浮动元素停止(文档流是文档中可显示对象在排列时所占用的位置)

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 div,span{height:100px;background:red;border:1px solid #000; float:left;}
 8 /*
 9 inline-block
10 
11 1.使块元素在一行显示
12 
13 2.使内嵌支持宽高
14 
15 3.换行被解析了
16 
17 4.不设置宽度的时候宽度由内容撑开
18 
19 5.在IE6,7下不支持块标签
20 
21 浮动:
22 1.使块元素在一行显示
23 
24 2.使内嵌支持宽高
25 
26 3.不设置宽度的时候宽度由内容撑开
27 
28 */
29 </style>
30 </head>
31 <body>
32 <div class="div1">div1</div>
33 <div class="div2">div2</div>
34 <span class="span1">span1</span>
35 <span class="span2">span2</span>
36 </body>
37 </html>

下面的代码只有box1浮动,则box1,box2重叠一起。两者都浮动就不会重叠

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
.box1{ width:100px;height:100px;background:red; float:left;}
.box2{ width:200px;height:200px;background:blue; /* float:left;*/}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
</body>
</html>

清浮动的方法:

1.给父级也加浮动(这种情况当父级margin:0 auto;时不居中)

eg:

使用display:inline-block会出现的情况:1.使块元素在一行显示2.使内嵌支持宽高3.换行被解析了4.不设置的时候宽度由内容撑开5.在IE6,7下步支持块标签由于inline-block属性换行的时候被解析(有间隙)故解决方法使用浮动float:left/right使用浮动时出现的情况:1.使块元素在一行显示2.使内嵌元素支持宽高3.不设置不宽高的时候宽度由内容撑开4.换行不被解析(故使用行内元素的时候清除间隙的方法可以使用浮动)5.元素添加浮动,会脱离文档流,按照指定的一个方向移动,直到碰到父级的边界或者另一个浮动元素停止(文档流是文档中可显示对象在排列时所占用的位置)1 <!DOCTYPE HTML>2 <html>3 <head>4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">5 <title>无标题文档</title>6 <style>7 div,span{height:100px;background:red;border:1px solid #000; float:left;}8 /*9 inline-block
10 
11 1.使块元素在一行显示
12 
13 2.使内嵌支持宽高
14 
15 3.换行被解析了
16 
17 4.不设置宽度的时候宽度由内容撑开
18 
19 5.在IE6,7下不支持块标签
20 
21 浮动:
22 1.使块元素在一行显示
23 
24 2.使内嵌支持宽高
25 
26 3.不设置宽度的时候宽度由内容撑开
27 
28 */
29 </style>
30 </head>
31 <body>
32 <div class="div1">div1</div>
33 <div class="div2">div2</div>
34 <span class="span1">span1</span>
35 <span class="span2">span2</span>
36 </body>
37 </html>下面的代码只有box1浮动,则box1,box2重叠一起。两者都浮动就不会重叠<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
.box1{ width:100px;height:100px;background:red; float:left;}
.box2{ width:200px;height:200px;background:blue; /* float:left;*/}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
</body>
</html>清浮动的方法:1.给父级也加浮动(这种情况当父级margin:0 auto;时不居中)eg:<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
.box{ width:300px;margin:0 auto;border:10px solid #000; float:left;}
.div{ width:200px;height:200px;background:red;float:left;}
/*清浮动1.给父级也加浮动(不居中了)
*/
</style>
</head>
<body>
<div class="box"><div class="div"></div>
</div>
</body>
</html>
View Code

2.给父级加display:inline-block;(同方法1,不居中。只有IE6,7居中)

eg:

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 .box{ width:300px;margin:0 auto;border:10px solid #000; display:inline-block;}
 8 .div{ width:200px;height:200px;background:red;float:left;}
 9 /*
10     清浮动
11     1.给父级也加浮动
12     2.给父级加display:inline-block
13 */
14 </style>
15 </head>
16 <body>
17 <div class="box">
18     <div class="div"></div>
19 </div>
20 </body>
21 </html>
View Code

3.在浮动元素下加<div class="clear"></div>
    .clear{ height:0px;font-size:0;clear:both;}但是在ie6下,块元素有最小高度,即当height<19px时,默认为19px,解决方法:font-size:0;或overflow:hidden;

eg:

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 .box{ width:300px;margin:0 auto;border:10px solid #000;}
 8 .div{ width:200px;height:200px;background:red;float:left;}
 9 .clear{ height:0px;font-size:0;clear:both;}
10 /*
11     清浮动
12     1.给父级也加浮动
13     2.给父级加display:inline-block
14     3.在浮动元素下加<div class="clear"></div>
15     .clear{ height:0px;font-size:0;clear:both;}
16 */
17 </style>
18 </head>
19 <body>
20 <div class="box">
21     <div class="div"></div>
22         <div class="clear"></div>
23 </div>
24 </body>
25 </html>
View Code

4.在浮动元素下加<br clear="all">

eg:

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 .box{ width:300px;margin:0 auto;border:10px solid #000;}
 8 .div{ width:200px;height:200px;background:red;float:left;}
 9 /*
10     清浮动
11     1.给父级也加浮动
12     2.给父级加display:inline-block
13     3.在浮动元素下加<div class="clear"></div>
14     .clear{ height:0px;font-size:0;clear:both;}
15     4.在浮动元素下加<br clear="all"/>
16 */
17 </style>
18 </head>
19 <body>
20 <div class="box">
21     <div class="div"></div>
22     <br clear="all"/>
23 </div>
24 </body>
25 </html>
View Code

5.给浮动元素父级加{zoom:1;}
    :after{content:""; display:block;clear:both;}

eg:

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 .box{margin:0 auto;border:10px solid #000;}
 8 .div{ width:200px;height:200px;background:red;float:left;}
 9 .clear{zoom:1;}
10 .clear:after{content:""; display:block;clear:both;}
11 /*
12     清浮动
13     1.给父级也加浮动
14     2.给父级加display:inline-block
15     3.在浮动元素下加<div class="clear"></div>
16     .clear{ height:0px;font-size:0;clear:both;}
17     4.在浮动元素下加<br clear="all"/>
18     
19     5. 给浮动元素的父级加{zoom:1;}
20     :after{content:""; display:block;clear:both;}
21     
22     **在IE6,7下浮动元素的父级有宽度就不用清浮动
23     
24     haslayout 根据元素内容的大小 或者父级的父级的大小来重新的计算元素的宽高
25     
26   display: inline-block
27   height: (任何值除了auto)
28   float: (left 或 right)
29   width: (任何值除了auto)
30   zoom: (除 normal 外任意值) 
31 */
32 </style>
33 </head>
34 <body>
35 <div class="box clear">
36     <div class="div"></div>
37 </div>
38 </body>
39 </html>
View Code

6.给浮动元素父级加overflow:auto;

 1 <!DOCTYPE HTML>
 2 <html>
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 5 <title>无标题文档</title>
 6 <style>
 7 .box{ width:300px;border:1px solid #000;overflow:auto;}
 8 .div1{ width:260px;height:400px;background:Red;float:left;}
 9 </style>
10 </head>
11 <body>
12 <div class="box">
13     <div class="div1"></div>
14 </div>
15 </body>
16 </html>
View Code

 7.给浮动父级加position:absolute;或者position:fixed;

eg:

 1 <style>
 2 #box1{border:30px solid red; position:absolute;/*position:fixed;*/}
 3 #box2{width:300px; height:300px; background:blue; float:left;}
 4 
 5 </style>
 6 </head>
 7 
 8 <body>
 9 
10     <div id="box1">
11         <div id="box2"></div>
12     </div>
13 
14 </body>

  

转载于:https://www.cnblogs.com/wxydigua/p/3424882.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/421416.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

背后的故事之 - 快乐的Lambda表达式(二)

快乐的Lambda表达式 上一篇 背后的故事之 - 快乐的Lambda表达式&#xff08;一&#xff09;我们由浅入深的分析了一下Lambda表达式。知道了它和委托以及普通方法的区别&#xff0c;并且通过测试对比他们之间的性能&#xff0c;然后我们通过IL代码深入了解了Lambda表达式&#x…

linux用vsc写c语言,vscode写c语言(windows)

用vscode学习c语言。记录vscode配置c语言编译环境。1.安装vscode(版本1.27)2.安装c/c扩展。配置环境变量&#xff0c;以WIN10为例 &#xff0c;此电脑-属性-高级系统设置-环境变量-系统变量-path-添加一条D:\Program Files\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw3…

linux识别UDF文件系统吗,Linux Kernel UDF文件系统本地缓冲区溢出漏洞

发布日期&#xff1a;2012-07-04更新日期&#xff1a;2012-07-05受影响系统&#xff1a;Linux kernel 3.3.x描述&#xff1a;--------------------------------------------------------------------------------BUGTRAQ ID: 54279Linux Kernel是Linux操作系统的内核。Linux K…

程序编译时书写Makefile注意事项一例

在进行程序编译时&#xff0c;可能需要指定一些库的库的路径、头文件的路径&#xff0c;分别使用的参数选项是-L和-I&#xff0c;需要注意的是&#xff1a;需要确保-L和-I后边的内容不为空&#xff0c;否则会出现意想不到的错误&#xff0c;而这种错误比较难以发现&#xff0c;…

把一个数组分为多个数组

/*int[]arr{1,2,5,213,75,42,64,48,21,44,22}; 分为3个数组 第一个数组满足全是偶数 第二个数组满足全是3的倍数 第三个数组满足其他*/ public class E{public static void main(String[]args){int[]arr{1,2,5,213,75,42,64,48,21,44,22};int b0,c0,d0;//遍历数组,得到每个数组…

数组的增删

public class A {public static void main(String[] args) {int[] arr { 1, 2, 5, 23, 64, 9, 87, 99 };// 要求删除23int index -1;int num 23;for (int i 0; i < arr.length; i) {if (num arr[i]) {index i;}}for (int i index 1; i < arr.length; i) {arr[i -…

获取Android版本信息和电话信息

Android的版本信息可以通过android.os.Build获得&#xff0c;电话信息可以通过TelephonyManager获得&#xff0c;代码如下&#xff1a; private void get_infor(){sdk android.os.Build.VERSION.SDK;;release android.os.Build.VERSION.RELEASE;user android.os.Build.USER;…

简单的二维数组

/*找人,找到输出在第几楼第几号房间&#xff08;考虑没有找到的情况&#xff09;*/ /*{{"凤姐","蔡除坤","张洁"},{"姚鸣","芙蓉姐姐"},{"马尔克死","打仲马","肝塞特","高死你"}}…

用c语言程序编写一份试卷,C语言程序设计试题

C语言程序设计试题俗话说&#xff1a;“一份耕耘&#xff0c;一分收获。”耕耘就得付出一定的代价&#xff0c;没有那含辛如苦的“耕耘”&#xff0c;哪能领会到甜人心田的收获?以下是小编为大家搜索整理的C语言程序设计试题&#xff0c;希望能给大家带来帮助!更多精彩内容请及…

面向对象封装之无参无返,无参有返

public class E{public static void main(String[]args){EQ enew EQ();e.name"Mr.Deng";e.age29;e.weight50.5;e.hobby"Designing something that he like";e.jieShao();String be.sentPresence();//对象接受返回值System.out.println("Thats "b…

终端模拟器编译c语言,编写你自己的Terminal emulator

安装开发依赖环境在apt包管理器系中&#xff0c;使用以下命令安装apt install libvte-2.91-dev介绍VTE是一个使用GTK构建的一个终端模拟器库&#xff0c; 能够处理DPI的更改。很多终端模拟器软件都基于VTE库&#xff0c;包括GNOME Terminal&#xff0c; XFCE Terminal&#xff…

转:C#串口编程

本文用来简单介绍一下C#串口编程的知识&#xff0c;主要以实例为内容。 凡是串口设备和计算机交互的时候都用到串口&#xff0c;在C#中我们如何来操作串口呢&#xff1f; 大话串口工作原理 实际串口是用来和外部设备进行交换数据的&#xff0c;我抽象出下面一个图形&#xff0c…

android c聊天功能,Android实现简单C/S聊天室应用

Android的网络应用&#xff1a;简单的C/S聊天室&#xff0c;供大家参考&#xff0c;具体内容如下服务器端&#xff1a;提供两个类创建ServerSocket监听的主类:MyServer.java负责处理每个Socket通信的线程类:ServerThread.java客户端&#xff1a;是一个Android应用程序>Multi…

android tabpageindicator 参数,Android实现Tab布局的4种方式(Fragment+TabPageIndicator+ViewPager)...

Android现在实现Tab类型的界面方式越来越多&#xff0c;今天就把常见的实现方式给大家来个总结。目前写了&#xff1a;1、传统的ViewPager实现2、FragmentManagerFragment实现3、ViewPagerFragmentPagerAdapter实现4、TabPageIndicatorViewPagerFragmentPagerAdapter1、传统的V…

基于visual Studio2013解决C语言竞赛题之0304整除数

&#xfeff;&#xfeff;&#xfeff;&#xfeff;题目解决代码及点评按照题目要求&#xff0c;判断数值对3和5取模的结果&#xff0c;是否为0#include <stdio.h> #include <stdlib.h> void main() {int a;printf("please input a\n");scanf_s("%d…