首页 > 编程 > HTML > 正文

几种关于html清除浮动的方法

2020-03-24 16:20:17
字体:
来源:转载
供稿:网友
本文讲了6种清除html' target='_blank'>HTML元素浮动的方法供大家参考使用,具体下看下文

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

1.使块元素在一行显示

2.使内嵌支持宽高

3.换行被解析了

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

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

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

使用浮动时出现的情况:

1.使块元素在一行显示
2.使内嵌元素支持宽高
3.不设置不宽高的时候宽度由内容撑开
4.换行不被解析(故使用行内元素的时候清除间隙的方法可以使用浮动)
5.元素添加浮动,会脱离文档流,按照指定的一个方向移动,直到碰到父级的边界或者另一个浮动元素停止(文档流是文档中可显示对象在排列时所占用的位置)

 !DOCTYPE HTML  html  head  meta http-equiv= Content-Type content= text/html; charset=utf-8  title 无标题文档 /title  style p,span{height:100px;background:red;border:1px solid #000; float:left;}inline-block1.使块元素在一行显示2.使内嵌支持宽高3.换行被解析了4.不设置宽度的时候宽度由内容撑开5.在IE6,7下不支持块标签1.使块元素在一行显示2.使内嵌支持宽高3.不设置宽度的时候宽度由内容撑开 /style  /head  body  p >

下面的代码只有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  p >

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

 !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;}.p{ width:200px;height:200px;background:red;float:left;} 1.给父级也加浮动(不居中了) /style  /head  body  p >

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

 !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; display:inline-block;}.p{ width:200px;height:200px;background:red;float:left;} 1.给父级也加浮动 2.给父级加display:inline-block /style  /head  body  p >

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

 !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;}.p{ width:200px;height:200px;background:red;float:left;}.clear{ height:0px;font-size:0;clear:both;} 1.给父级也加浮动 2.给父级加display:inline-block 3.在浮动元素下加 p >

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

 !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;}.p{ width:200px;height:200px;background:red;float:left;} 1.给父级也加浮动 2.给父级加display:inline-block 3.在浮动元素下加 p >

5.给浮动元素父级加{zoom:1;}

:after{content: display:block;clear:both;}
 !DOCTYPE HTML  html  head  meta http-equiv= Content-Type content= text/html; charset=utf-8  title 无标题文档 /title  style .box{margin:0 auto;border:10px solid #000;}.p{ width:200px;height:200px;background:red;float:left;}.clear{zoom:1;}.clear:after{content: display:block;clear:both;} 1.给父级也加浮动 2.给父级加display:inline-block 3.在浮动元素下加 p >

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

 !DOCTYPE HTML  html  head  meta http-equiv= Content-Type content= text/html; charset=utf-8  title 无标题文档 /title  style .box{ width:300px;border:1px solid #000;overflow:auto;}.p1{ width:260px;height:400px;background:Red;float:left;} /style  /head  body  p >

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP !

相关推荐:

如何使用Html屏蔽右键菜单和左键划字功能

关于HTML 文本格式化的代码

以上就是几种关于html清除浮动的方法的详细内容,html教程

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表