清除浮动的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,一经查实,立即删除!

相关文章

linux gst qt,【ARM-Linux开发】Gstreamer+QT+摄像头 编程总结

1,gstreamer开发手册&#xff0c;gstreamer官网(这些都不用说了吧)2&#xff0c;gst-launch的用法&#xff0c;这也不用说了吧。(白菜&#xff0c;鸡蛋&#xff0c;西红柿&#xff0c;砖头&#xff0c;鼠标……..)lqplayer--基于gstreamer和qt的Linux下的简单播放器。实现了基于…

背后的故事之 - 快乐的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…

mouseevent tips

关于roll_over 和 mouse_over的区别&#xff0c;这篇文章说明的很清楚&#xff0c;http://zengrong.net/post/1105.htm 全文如下&#xff1a; 在MouseEvent中&#xff0c;ROLL_OVER和MOUSE_OVER、ROLL_OUT和MOUSE_OUT是两对比较相似的事件&#xff0c;它们有什么区别呢&#xf…

mt3 linux外网搭建,MT3 换皮梦幻 Linux端架设文字教程

1.安装宝塔yum install -y wget && wget -O install.shhttp://download.bt.cn/install/install.sh&& shinstall.sh获取宝塔地址 账号 密码开放端口10030 10011 10020 10003宝塔安装网站环境n1.14 mysql 5.6 php5.4关闭防火墙&#xff0c;我是7系统&…

一个有关数组的题

//在这里插入代码片import java.util.*; 1. (A rookie learning Java)写的一个有关数组的题 定义一个长度为10的整型数组&#xff0c; 循环输入10个整数然后判断这个数组中有几个偶数&#xff0c; 再定义一个正好能存放这几个偶数的数组&#xff0c; 将上一个数组中的所有偶数…

onCreateOptionsMenu

onCreateOptionsMenu----只在Activity创建时调用一次&#xff01;之后不会再被调用&#xff01;onPrepareOptionsMenu----每次display menu之前&#xff0c;都會调用该方法&#xff0c;  只要按一次menu按鍵&#xff0c;就會调用一次。  所以你會發現每次只要按一次menu按鍵…

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;//遍历数组,得到每个数组…

window的war发布Linux失败,为什么war包在Windows的tomcat正常运行,在linux服务器报errorpage错误?...

最近项目完成后打包成war发布到服务器遇到访问应用404问题&#xff0c;用的是tomcat8.5&#xff0c;错误信息如下&#xff1a;o.s.b.w.servlet.support.ErrorPageFilter : Cannot forward to error page for request [/login] as the response has already been committed. As…

linux 命令行模式下,浏览网页方法

Ubuntu自带最新版的Gnome桌面&#xff0c;拥有大量的服务和桌面应用程序&#xff0c;让您仅通过一张安装光盘就可以体验到无比舒适的操作环境。下文介绍的在ubuntu下使用终端命令行上网的方法。 第一步&#xff0c;需要安装一个名为w3m的软件工具&#xff0c;打开终端&#xff…

数组的增删

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 -…

linux就业技术指导,学linux前景怎么样

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼青海华夏职业学校09年招生简章221.207.32.* 1楼青海华夏职业技术中等专科学校概况&#xff1a;青海华夏职业技术中等专科学校是由青海省教育厅备案并批准成立的一所中等层次的职业技术专修学校。学校坐落在青海省西宁市美丽的南川河…

获取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;*/ /*{{"凤姐","蔡除坤","张洁"},{"姚鸣","芙蓉姐姐"},{"马尔克死","打仲马","肝塞特","高死你"}}…

求e的c语言程序,(C语言)计算e的x次方

计算e的x次方题目&#xff1a;编写程序&#xff0c;计算ex1x(x2)/(2!)(x3)/(3!)(x4)/(4!)…(x^n)/n!说明&#xff1a;e^x表示e的x次方&#xff0c;2!表示2的阶乘输入输出格式要求&#xff1a;输入格式&#xff1a;x n回车e^x, x, n均用double类型存储。要求输出小数点后6位。只…

第一次接触万物接对象

public class Girl{//一个类文件String name;//开始赋予girl的静态属性String character;String ilike;String range;public void introduction(){//方法&#xff0c;无参无返&#xff0c;动态属性System.out.print("Name&#xff1a;"name"\n"""…

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

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