明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

幾種對(duì)于html清除浮動(dòng)的方法

[摘要]本文講了6種清除HTML元素浮動(dòng)的方法供大家參考使用,具體下看下文使用display:inline-block會(huì)出現(xiàn)的情況:1.使塊元素在一行顯示2.使內(nèi)嵌支持寬高3.換行被解析了4.不設(shè)置的時(shí)候?qū)挾扔蓛?nèi)容撐開5.在IE6,7下步支持塊標(biāo)簽由于inline-block屬性換行的時(shí)候被解析(有間隙)...
本文講了6種清除HTML元素浮動(dòng)的方法供大家參考使用,具體下看下文

使用display:inline-block會(huì)出現(xiàn)的情況:

1.使塊元素在一行顯示

2.使內(nèi)嵌支持寬高

3.換行被解析了

4.不設(shè)置的時(shí)候?qū)挾扔蓛?nèi)容撐開

5.在IE6,7下步支持塊標(biāo)簽

由于inline-block屬性換行的時(shí)候被解析(有間隙)故解決方法使用浮動(dòng)float:left/right

使用浮動(dòng)時(shí)出現(xiàn)的情況:

1.使塊元素在一行顯示
2.使內(nèi)嵌元素支持寬高
3.不設(shè)置不寬高的時(shí)候?qū)挾扔蓛?nèi)容撐開
4.換行不被解析(故使用行內(nèi)元素的時(shí)候清除間隙的方法可以使用浮動(dòng))
5.元素添加浮動(dòng),會(huì)脫離文檔流,按照指定的一個(gè)方向移動(dòng),直到碰到父級(jí)的邊界或者另一個(gè)浮動(dòng)元素停止(文檔流是文檔中可顯示對(duì)象在排列時(shí)所占用的位置)

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
p,span{height:100px;background:red;border:1px solid #000; float:left;}
/*
inline-block
1.使塊元素在一行顯示
2.使內(nèi)嵌支持寬高
3.換行被解析了
4.不設(shè)置寬度的時(shí)候?qū)挾扔蓛?nèi)容撐開
5.在IE6,7下不支持塊標(biāo)簽
浮動(dòng):
1.使塊元素在一行顯示
2.使內(nèi)嵌支持寬高
3.不設(shè)置寬度的時(shí)候?qū)挾扔蓛?nèi)容撐開
*/
</style>
</head>
<body>
<p class="p1">p1</p>
<p class="p2">p2</p>
<span class="span1">span1</span>
<span class="span2">span2</span>
</body>
</html>

下面的代碼只有box1浮動(dòng),則box1,box2重疊一起。兩者都浮動(dòng)就不會(huì)重疊

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
.box1{ width:100px;height:100px;background:red; float:left;}
.box2{ width:200px;height:200px;background:blue; /* float:left;*/}
</style>
</head>
<body>
<p class="box1"></p>
<p class="box2"></p>
</body>
</html>

清浮動(dòng)的方法:
1.給父級(jí)也加浮動(dòng)
(這種情況當(dāng)父級(jí)margin:0 auto;時(shí)不居中)

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
.box{ width:300px;margin:0 auto;border:10px solid #000; float:left;}
.p{ width:200px;height:200px;background:red;float:left;}
/*
    清浮動(dòng)
    1.給父級(jí)也加浮動(dòng)(不居中了)
*/
</style>
</head>
<body>
<p class="box">
    <p class="p"></p>
</p>
</body>
</html>

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

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
.box{ width:300px;margin:0 auto;border:10px solid #000; display:inline-block;}
.p{ width:200px;height:200px;background:red;float:left;}
/*
    清浮動(dòng)
    1.給父級(jí)也加浮動(dòng)
    2.給父級(jí)加display:inline-block
*/
</style>
</head>
<body>
<p class="box">
    <p class="p"></p>
</p>
</body>
</html>

3.在浮動(dòng)元素下加<p class="clear"></p>

.clear{ height:0px;font-size:0;clear:both;}但是在ie6下,塊元素有最小高度,即當(dāng)height<19px時(shí),默認(rèn)為19px,解決方法:font-size:0;或overflow:hidden;

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</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;}
/*
    清浮動(dòng)
    1.給父級(jí)也加浮動(dòng)
    2.給父級(jí)加display:inline-block
    3.在浮動(dòng)元素下加<p class="clear"></p>
    .clear{ height:0px;font-size:0;clear:both;}
*/
</style>
</head>
<body>
<p class="box">
    <p class="p"></p>
        <p class="clear"></p>
</p>
</body>
</html>

4.在浮動(dòng)元素下加<br clear="all">

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
.box{ width:300px;margin:0 auto;border:10px solid #000;}
.p{ width:200px;height:200px;background:red;float:left;}
/*
    清浮動(dòng)
    1.給父級(jí)也加浮動(dòng)
    2.給父級(jí)加display:inline-block
    3.在浮動(dòng)元素下加<p class="clear"></p>
    .clear{ height:0px;font-size:0;clear:both;}
    4.在浮動(dòng)元素下加<br clear="all"/>
*/
</style>
</head>
<body>
<p class="box">
    <p class="p"></p>
    <br clear="all"/>
</p>
</body>
</html>

5.給浮動(dòng)元素父級(jí)加{zoom:1;}

:after{content:""; display:block;clear:both;}
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</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;}
/*
    清浮動(dòng)
    1.給父級(jí)也加浮動(dòng)
    2.給父級(jí)加display:inline-block
    3.在浮動(dòng)元素下加<p class="clear"></p>
    .clear{ height:0px;font-size:0;clear:both;}
    4.在浮動(dòng)元素下加<br clear="all"/>
    5. 給浮動(dòng)元素的父級(jí)加{zoom:1;}
    :after{content:""; display:block;clear:both;}
    **在IE6,7下浮動(dòng)元素的父級(jí)有寬度就不用清浮動(dòng)
    haslayout 根據(jù)元素內(nèi)容的大小 或者父級(jí)的父級(jí)的大小來重新的計(jì)算元素的寬高
  display: inline-block
  height: (任何值除了auto)
  float: (left 或 right)
  width: (任何值除了auto)
  zoom: (除 normal 外任意值) 
*/
</style>
</head>
<body>
<p class="box clear">
    <p class="p"></p>
</p>
</body>
</html>

6.給浮動(dòng)元素父級(jí)加overflow:auto;

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標(biāo)題文檔</title>
<style>
.box{ width:300px;border:1px solid #000;overflow:auto;}
.p1{ width:260px;height:400px;background:Red;float:left;}
</style>
</head>
<body>
<p class="box">
    <p class="p1"></p>
</p>
</body>
</html>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,更多相關(guān)內(nèi)容請(qǐng)關(guān)注PHP中文網(wǎng)!

相關(guān)推薦:

如何使用Html屏蔽右鍵菜單和左鍵劃字功能

關(guān)于HTML 文本格式化的代碼

以上就是幾種關(guān)于html清除浮動(dòng)的方法的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。