亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS清除浮動第一些方法

發布時間:2020-07-04 17:02:03 來源:網絡 閱讀:317 作者:lvning296 欄目:開發技術

清除浮動的方法:常用第5種



第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;}

.div{ width:200px;height:200px;background:red;float:left;}

/*

    清浮動

    1.給父級也加浮動(不居中了)

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

</div>

</body>

</html>






第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;}

.div{ width:200px;height:200px;background:red;float:left;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

</div>

</body>

</html>


第3種 在浮動元素下加<div class="clear"></div>


   .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;}

.div{ width:200px;height:200px;background:red;float:left;}

.clear{ height:0px;font-size:0;clear:both;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

        <div class="clear"></div>

</div>

</body>

</html>




第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;}

.div{ width:200px;height:200px;background:red;float:left;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

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

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

    <br clear="all"/>

</div>

</body>

</html>




第5種.給浮動元素父級加{zoom:1;}



<!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;}

.div{ width:200px;height:200px;background:red;float:left;}

.clear{zoom:1;}

.clear:after{content:""; display:block;clear:both;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

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


    5. 給浮動元素的父級加{zoom:1;}

    :after{content:""; display:block;clear:both;}


    **在IE6,7下浮動元素的父級有寬度就不用清浮動


    haslayout 根據元素內容的大小 或者父級的父級的大小來重新的計算元素的寬高


  display: inline-block

  height: (任何值除了auto)

  float: (left 或 right)

  width: (任何值除了auto)

  zoom: (除 normal 外任意值) 

*/

</style>

</head>

<body>

<div class="box clear">

    <div class="div"></div>

</div>

</body>

</html>




.html清除浮動的6種方法示例

作者: 字體:[增加 減小] 類型:轉載 時間:2013-11-15 我要評論


本文講了6種清除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>

div,span{height:100px;background:red;border:1px solid #000; float:left;}

/*

inline-block

1.使塊元素在一行顯示

2.使內嵌支持寬高

3.換行被解析了

4.不設置寬度的時候寬度由內容撐開

5.在IE6,7下不支持塊標簽

浮動:

1.使塊元素在一行顯示

2.使內嵌支持寬高

3.不設置寬度的時候寬度由內容撐開

*/

</style>

</head>

<body>

<div class="div1">div1</div>

<div class="div2">div2</div>

<span class="span1">span1</span>

<span class="span2">span2</span>

</body>

</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;時不居中)



復制代碼 代碼如下:

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



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;}

.div{ width:200px;height:200px;background:red;float:left;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

</div>

</body>

</html>



3.在浮動元素下加<div class="clear"></div>


  .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;}

.div{ width:200px;height:200px;background:red;float:left;}

.clear{ height:0px;font-size:0;clear:both;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

        <div class="clear"></div>

</div>

</body>

</html>


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;}

.div{ width:200px;height:200px;background:red;float:left;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

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

*/

</style>

</head>

<body>

<div class="box">

    <div class="div"></div>

    <br clear="all"/>

</div>

</body>

</html>


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;}

.div{ width:200px;height:200px;background:red;float:left;}

.clear{zoom:1;}

.clear:after{content:""; display:block;clear:both;}

/*

    清浮動

    1.給父級也加浮動

    2.給父級加display:inline-block

    3.在浮動元素下加<div class="clear"></div>

    .clear{ height:0px;font-size:0;clear:both;}

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


    5. 給浮動元素的父級加{zoom:1;}

    :after{content:""; display:block;clear:both;}


    **在IE6,7下浮動元素的父級有寬度就不用清浮動


    haslayout 根據元素內容的大小 或者父級的父級的大小來重新的計算元素的寬高


  display: inline-block

  height: (任何值除了auto)

  float: (left 或 right)

  width: (任何值除了auto)

  zoom: (除 normal 外任意值) 

*/

</style>

</head>

<body>

<div class="box clear">

    <div class="div"></div>

</div>

</body>

</html>


第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;}

.div1{ width:260px;height:400px;background:Red;float:left;}

</style>

</head>

<body>

<div class="box">

    <div class="div1"></div>

</div>

</body>

</html>




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锡林郭勒盟| 平泉县| 汉源县| 新田县| 汉寿县| 电白县| 福州市| 乌兰察布市| 容城县| 独山县| 珲春市| 荆州市| 永年县| 定南县| 吴堡县| 沁源县| 临沂市| 威宁| 鄂托克前旗| 墨脱县| 建宁县| 兴宁市| 永寿县| 怀柔区| 报价| 稷山县| 宣武区| 大同县| 晋州市| 祥云县| 奉节县| 闽清县| 宣化县| 荣昌县| 安吉县| 丹阳市| 彩票| 枣庄市| 浑源县| 滁州市| 罗田县|