CSS定位規則之BFC 你竟然一直不知道的東西!!!!!

來源:互聯網
上載者:User

相關文檔:

http://blog.sina.com.cn/s/blog_877284510101jo5d.html

http://www.cnblogs.com/dojo-lzz/p/3999013.html

http://www.cnblogs.com/lhb25/p/inside-block-formatting-ontext.html
BFC(Block Formatting CoFSADntext)直譯為“塊級格式化範圍”

1.是 W3C CSS 2.1 規範中的一個概念,它決定了元素如何對其內容進行定位,以及與其他元素的關係和相互作用。當涉及到可視化布局的時候,Block Formatting Context提供了一個環境,HTML元素在這個環境中按照一定規則進行布局。一個環境中的元素不會影響到其它環境中的布局。比如浮動元素會形成BFC,浮動元素內部子項目的主要受該浮動元素影響,兩個浮動元素之間是互不影響的。這裡有點類似一個BFC就是一個獨立的行政單位的意思。也可以說BFC就是一個作用範圍。可以把它理解成是一個獨立的容器,並且這個容器的裡box的布局,與這個容器外的毫不相干。

2.另一個通俗點的解釋是:在普通流中的 Box(框) 屬於一種 formatting context(格式化上下文) ,類型可以是 block ,或者是 inline ,但不能同時屬於這兩者。並且, Block boxes(塊框) 在 block formatting context(塊格式化上下文) 裡格式化, Inline boxes(塊內框) 則在 inline formatting context(行內格式化上下文) 裡格式化。任何被渲染的元素都屬於一個 box ,並且不是 block ,就是 inline 。即使是未被任何元素包裹的文本,根據不同的情況,也會屬於匿名的 block boxes 或者 inline boxes。所以上面的描述,即是把所有的元素劃分到對應的 formatting context 裡。
DEMO1:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style>
    body {
        width: 300px;
        position: relative;
    }
 
    .aside {
        width: 100px;
        height: 150px;
        float: right;
        background: #f66;
    }
 
    .main {
        height: 200px;
        background: #fcc;
        
    }
</style>
</head>
<body>
    <div class="aside"></div>
    <div class="main"></div>
</body>
</html>
顯示效果如圖:可以看到由於深紅色快的浮動導致不佔文檔位置所以會浮動在粉紅色塊上
開啟BFC:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style>
    body {
        width: 300px;
        position: relative;
    }
 
    .aside {
        width: 100px;
        height: 150px;
        float: right;
        background: #f66;
    }
 
    .main {
        height: 200px;
        background: #fcc;
         overflow: hidden;
    }
</style>
</head>
<body>
    <div class="aside"></div>
    <div class="main"></div>
</body>
</html>
給其中 非浮動 的元素添加了overflow:hidden後看到效果如下圖所示:
兩個div不再堆疊在一起了
DEMO2 : <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<style>
    .par {
        border: 5px solid #fcc;
        width: 300px;
       
    }
 
    .child {
        border: 5px solid #f66;
        width:100px;
        height: 100px;
        float: left;
    }
</style>
</head>
<body>
      <div class="par">
        <div class="child"></div>
        <div class="child"></div>
    </div>
</body>
</html>

顯示效果如圖所示:由於子節點的浮動導致脫離了父節點文檔,所以父節沒有被撐開
開啟BFC: <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<style>
    .par {
        border: 5px solid #fcc;
        width: 300px;
       overflow: hidden;;
    }
 
    .child {
        border: 5px solid #f66;
        width:100px;
        height: 100px;
        float: left;
    }
</style>
</head>
<body>
      <div class="par">
        <div class="child"></div>
        <div class="child"></div>
    </div>
</body>
</html>
效果如下圖所示:給父節點添加了overflowhidden,這時候就可以被子節點撐開了
DEMO3:

<!DOCTYPE html>
<html>  
<head> 
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <!--The viewport meta tag is used to improve the presentation and behavior of the samples 
    on iOS devices-->
  <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
  <title></title>


  <style> 
    html, body { height: 100%; width: 100%; margin: 0; padding: 0; }
    .left{
      background:pink;
      float: left;
      width:180px;
      height:200px;
    }
    .center{
      background:lightyellow;
      overflow:hidden;
       height:200px;
      
    }
    .right{
      background: lightblue;
      width:180px;
       height:200px;
      float:right;
    }
  </style> 
  
  
</head> 


<body> 
  <div class="container">
    <div class="right">right</div>
    <div class="left">left</div>
    <div class="center">center</div>  
  </div>
</html> 顯示效果如圖:我們看到三個div成一行排列了,注意這裡的cener並沒有設定寬度是自動撐開的,很吊。 不過注意一點center必須再html標籤的順序上放在最後才能實現這個效果
DEMO4: <!DOCTYPE html>
<html>  
<head> 
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <!--The viewport meta tag is used to improve the presentation and behavior of the samples 
    on iOS devices-->
  <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
  <title></title>


  <style> 
    html, body { height: 100%; width: 100%; margin: 0; padding: 0; }
    .main{border:2px blue solid;}
    .left{
      background:pink;
      float: left;
      width:180px;
      height:200px;
    }
  </style> 
  
  
</head> 


<body> 
<div class="main">
  <div class="c">
    <div class="left">right</div>
    <div class="left">left</div>
  </div>
   <div class="c">
    <div class="left">right</div>
    <div class="left">left</div>
  </div>
</div> 
</html>
顯示效果如圖所示:雖然left div是分別放在兩個c div裡面的, 但是由於浮動導致子節點脫離文檔流 而使子節點不佔位 同時排成一行來布局
開啟BFC: <!DOCTYPE html>
<html>  
<head> 
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <!--The viewport meta tag is used to improve the presentation and behavior of the samples 
    on iOS devices-->
  <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
  <title></title>


  <style> 
    html, body { height: 100%; width: 100%; margin: 0; padding: 0; }
    .main{border:2px blue solid;}
    .c{overflow: hidden;;}
    .left{
      background:pink;
      float: left;
      width:180px;
      height:200px;
    }
  </style> 
  
  
</head> 


<body> 
<div class="main">
  <div class="c">
    <div class="left">right</div>
    <div class="left">left</div>
  </div>
   <div class="c">
    <div class="left">right</div>
    <div class="left">left</div>
  </div>
</div> 
</html>
顯示效果如圖所示:給c div添加了overflow:hidden的時候觸發了BFC  所以原本浮動的子節點並沒有超出C div來影響到c外的節點,所以變成了兩行
最後總結: 可以看到本篇文章通篇都是在講解如何使用overflow來觸發BFC,其實除了overflow外還有其他的觸發方法,只不過暫時還沒遇到先不表,以上代碼均通過IE7~[包括IE7]和Google的檢測,可以放心使用

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.