<style> * { margin: 0; padding: 0; } .layout { margin-top: 10px; } .layout div{ min-height: 100px; } </style> <body> <!--1.浮動的方式來實現佈局--> <section class="layout float"> <style> .layout.float .left { float: left; width: 300px; background-color: #48adff; } .layout.float .main { background-color: #ff4344; } </style> <article class="left-main"> <div class="left"></div> <div class="main"> <h1>浮動兩欄佈局</h1> <p>兩欄佈局的中間部分</p> <p>兩欄佈局的中間部分</p> </div> </article> </section> <!--2.定位的方式來實現佈局--> <section class="layout absolute"> <style> .layout.absolute .left-main { width: 100%; } .layout.absolute .left { left : 0; width: 300px; background-color: #48adff; position: absolute; } .layout.absolute .main { /*默認是以正常文檔流的方式來展示的*/ background-color: #ff4344; margin-left: 300px; right: 0; } </style> <article class="left-main"> <div class="left"></div> <div class="main"> <h1>絕對定位兩欄佈局</h1> <p>兩欄佈局的中間部分</p> <p>兩欄佈局的中間部分</p> </div> </article> </section> <!--3.flex佈局的實現--> <section class="layout flex"> <style> .layout .left-main { display: flex; } .layout .left { width: 300px; background-color: #48adff; } .layout .main { flex: 1; background-color: #ff4344; } </style> <article class="left-main"> <div class="left"></div> <div class="main"> <h1>flex兩欄佈局</h1> <p>兩欄佈局的中間部分</p> <p>兩欄佈局的中間部分</p> </div> </article> </section> <!--4.table佈局的實現--> <section class="layout table"> <style> .layout .left-main { display: table; width: 100%; } .layout .left { display : table-cell; width: 300px; background-color: #48adff; } .layout .main { background-color: #ff255f; } </style> <article class="left-main"> <div class="left"></div> <div class="main"> <h1>table兩欄佈局</h1> <p>兩欄佈局的中間部分</p> <p>兩欄佈局的中間部分</p> </div> </article> </section> <!--5.grid佈局--> <section class="layout grid"> <style> .layout.grid .left-main { display: grid; } .layout.grid .left-main { grid-template-rows : 100px; /*按照順序指定盒子的寬度*/ grid-template-columns : 300px auto; } .layout.grid .left { background-color: #48adff; } .layout.grid .main { background-color: #ff4344; } </style> <article class="left-main"> <div class="left"></div> <div class="main"> <h1>grid兩欄佈局</h1> <p>兩欄佈局的中間部分</p> <p>兩欄佈局的中間部分</p> </div> </article> </section> </body>
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>實現三欄水平佈局之聖盃佈局</title> <style type="text/css"> /*基本樣式*/ .left, .right, .main { min-height: 300px; } .left { width: 200px; background-color:thistle; } .main { background-color: #999; } .right { width: 300px; background-color: violet; } /* 聖盃佈局關鍵代碼 */ .left, .main, .right { float: left; position: relative; } .main { width: 100%; } .container { padding-left: 200px; padding-right: 300px; } .left { margin-left: -100%; left: -200px; } .right { margin-left: -300px; right: -300px; } </style> </head> <body> <div class="container"> <div class="main">main</div> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>雙飛翼佈局</title> <style> .left, .right, .main { min-height: 200px; } .left { width: 200px; background-color: thistle; } .main { background: #999; } .right { width: 300px; background-color: violet; } /* 雙飛翼佈局重點 */ .left, .main, .right { float: left; } .main { width: 100%; } .main-inner { margin-left: 200px; margin-right: 300px; } .left { margin-left: -100%; } .right { margin-left: -300px; } </style> </head> <body> <div class="main"><div class="main-inner">中心區</div></div> <div class="left">left</div> <div class="right">right</div> </body> </html>
<style type="text/css"> p{ font-size:11pt; color:#363636; text-indent:2em; } .parent{ width:500px; height:150px; margin-top:20px; margin-left:20px; border:solid 1px #555555; background:#aaaaaa; } .parent div{ width:100px; height:80px; float:left; background:#708090; border:dashed 1px #008B8B; font-size:12pt; font-weight:bold; color:#104E8B; } </style> </head> <body> <!--相對定位!--> <h2>relative</h2> <p>相對定位是一個很是容易掌握的概念。若是對一個元素進行相對定位,它將出如今它所在的位置上。而後,能夠經過設置垂直或水平位置,讓這個元素「相對於」它的起點進行移動。</p> <div class="parent"> <div>child 1</div> <div style="position:relative;left:20px;top:20px;">child 2</div> <div>child 3</div> </div> <!--絕對定位!--> <h2>absolute</h2> <p>絕對定位的元素的位置相對於最近的已定位祖先元素,若是元素沒有已定位的祖先元素,那麼它的位置相對於最初的包含塊。 對於定位的主要問題是要記住每種定位的意義。</p> <p>絕對定位是「相對於」最近的已定位祖先元素,若是不存在已定位的祖先元素,那麼「相對於」最初的包含塊。因此若是要設定元素與其父元素的絕對位置定位就必須設定父元素的定位。</p> <p>註釋:根據用戶代理的不一樣,最初的包含塊多是畫布或 HTML 元素。</p> <div class="parent" style="position:relative;"<!--若是該處不定位,那麼child5框的定位是相對於最初的包含塊!-->> <div>child 4</div> <div style="position:absolute;left:20px;top:20px;">child 5</div> <div>child 6</div> </div> <!--相對定位!--> <h2>fixed</h2> <p>元素框的表現相似於將 position 設置爲 absolute,不過其包含塊是視窗自己。</p> <div class="parent"> <div>child 7</div> <div style="position:fixed;right:20px;top:20px;">child 8</div> <div>child 9</div> </div> <!--相對定位!--> <h2>static</h2> <p>元素框正常生成。塊級元素生成一個矩形框,做爲文檔流的一部分,行內元素則會建立一個或多個行框,置於其父元素中。</p> <div class="parent"> <div>child 10</div> <div style="position:static;right:20px;top:20px;">child 11</div> <div>child 12</div> </div> </body>
<style> .father-green { width:500px; height:300px; background-color:green; } .son-red { width:200px; height:100px; background-color:red; display:inline-block; } .subson-yellow { height:50px; width:200px; background-color: yellow; } .son-purple { width: 200px; height:100px; background-color:purple; display:inline-block; margin-left:-50px; } .mather-pink { width: 300px; height:100px; background-color:pink; } .daughter-blue { width:100px; height:50px; background-color:blue; margin-top:-20px; } </style> <body> <div class="father-green"> <div class="son-red"> <div class="subson-yellow"> 我是孫子輩的我是孫子輩的我是孫子輩的 </div> </div> <div class="son-purple"> 我是第二個子元素 </div> </div> <div class="mather-pink"><div class="daughter-blue">daughter-blue</div> </div> </body>
[!NOTE]css
- 層疊上下文能夠包含在其餘層疊上下文中,而且一塊兒組建了一個有層級的層疊上下文
- 每一個層疊上下文徹底獨立於它的兄弟元素,當處理層疊時只考慮子元素,這裏相似於BFC
- 每一個層疊上下文是自包含的:當元素的內容發生層疊後,整個該元素將會在父級疊上下文中按順序進行層疊
[!NOTE]
總結:層疊上下文(border/background)< 負z-index < block塊狀盒子 < 浮動的盒子 < inline/inline-block水平盒子 < z-index:auto 或者 z-index:0 < 正z-index(定位並設定了正的z-index值,z-index值越大 層級越高)html
<style> *{ margin: 0; padding: 0; } ul{ list-style: none; } li{ display: inline-block; width: 100px; height: 100px; background: red; } </style> <ul> <li>111</li> <li>222</li> <li>333</li> <li>444</li> <li>555</li> </ul>
BFC:浮動元素和絕對定位元素,非塊級盒子的塊級容器(例如 inline-blocks, table-cells, 和 table-captions),以及overflow值不爲「visiable」的塊級盒子,都會爲他們的內容建立新的BFC(塊級格式上下文)。它是指一個獨立的塊級渲染區域,只有Block-level BOX參與,該區域擁有一套渲染規則來約束塊級盒子的佈局,且與區域外部無關web
<div class="main left">.main{float:left;}</div> <div class="side left">.side{float:right;}</div> <div style="clear:both;"></div> </div> <div class="footer">.footer</div>
<div class="wrap" id="float3" style="overflow:hidden; *zoom:1;"> <h2>3)父元素設置 overflow </h2> <div class="main left">.main{float:left;}</div> <div class="side left">.side{float:right;}</div> </div> <div class="footer">.footer</div>
<style type="text/css"> .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .clearfix { display: inline-block; *zoom:1; } /* for IE/Mac */ </style> <!--[if IE]> <style type="text/css"> .clearfix {zoom: 1;/* triggers hasLayout */ display: block;/* resets display for IE/Win */} </style> <![endif]-->
.clearfix:before,.clearfix:after{ content:""; display:table; } .clearfix:after{ clear:both; } .clearfix{ *zoom:1; }
<meta name="viewport" content="width=device-width,initial-scale=1">
rem是什麼(CSS3新增),初始值:1rem=16px?
rem(font size of the root element)是指相對於根元素的字體大小的單位。簡單的說它就是一個相對單位瀏覽器
[!NOTE]
rem(1rem = 16px) / viewport(固定寬度) / media query(屏幕大小自適應)app
隱藏(移動端隱藏元素) 折行(橫排變縱排) 自適應(留下自適應的空間)(media query)ide
定寬佈局(版心)佈局
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .wrapper { overflow: hidden; width: 1000px; height: 500px; background: #999; } .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; /* 1vh = 1% * 視口高度 */ margin: 50vh auto; transform: translateY(-50%); } </style> <body> <div class="wrapper"> <div class="center"> 基於視口的垂直居中<br /> 不要求原生有固定的寬高。<br /> 可是這種居中是在整個頁面窗口內居中,不是基於父元素<br /> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; position: absolute; top: 50%; left: 50%; margin-left: -9rem; margin-top: -5rem; } </style> <body> <div class="center"> 要求原生有固定的寬高。<br/> position: absolute;<br/> top和left 爲 50%;<br/> margin上爲高的一半<br/> margin左爲寬的一半<br/> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; position: absolute; top: calc(50% - 5em); left: calc(50% - 9em); } </style> <body> <div class="center"> 要求原生有固定的寬高。<br/> position: absolute;<br/> top 爲 calc(50% 剪 一半高) left 爲 calc(50% 剪 一半寬) </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style> <body> <div class="center"> 不要求原生有固定的寬高。<br/> position: absolute;<br/> top和left 爲 50%;<br/> transform: translate(-50%, -50%); </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .wrapper { width: 1000px; height: 600px; background: #999; display: flex; } .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; margin: auto; } </style> <body> <div class="wrapper"> <div class="center"> 使用flex居中<br/> 父元素 display: flex; <br/> 居中塊: margin: auto; </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>垂直居中</title> </head> <style> .wrapper { width: 1000px; height: 600px; background: #999; display: flex; /* 盒子橫軸的對齊方式 */ justify-content: center; /* 盒子縱軸的對齊方式 */ align-items: center; } .center { width: 18em; height: 10em; text-align: center; background-color: orange; color: #fff; } </style> <body> <div class="wrapper"> <div class="center"> 使用flex居中<br/> 父元素 display: flex; <br/> justify-content: center;<br/> align-items: center;<br/> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>水平元素居中</title> </head> <style> .wrapper { text-align: center; height: 1000px; } .center { display: inline-block; width: 500px; height: 200px; background: orange; } </style> <body> <div class="wrapper"> <div class="center">若是須要居中的元素爲常規流中 inline / inline-block 元素,爲父元素設置 text-align: center;</div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>水平元素居中</title> </head> <style> .wrapper { width: 100%; height: 500px; text-align: center; /* 3 */ } .center { width: 500px; text-align: left; margin: 0 auto; background-color: orange; } </style> <body> <div class="wrapper"> <div class="center"> 父元素上設置 text-align: center;<br /> 居中元素上margin 爲 auto。 </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>水平元素居中</title> </head> <style> .wrapper { width: 80%; height: 500px; background: #888; position: relative; } .center { width: 500px; position: absolute; left: 50%; margin-left: -250px; background-color: orange; } </style> <body> <div class="wrapper"> <div class="center">若是元素positon: absolute; 那麼 0)設置父元素postion: relative 1)爲元素設置寬度,2)偏移量設置爲 50%,3)偏移方向外邊距設置爲元素寬度一半乘以-1</div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>水平元素居中</title> </head> <style> .wrapper { width: 80%; height: 500px; background: #888; } .center { width: 500px; position: relative; left: 50%; margin-left: -250px; background-color: orange; } </style> <body> <div class="wrapper"> <div class="center">若是元素positon: relative。 那麼 1)爲元素設置寬度,2)偏移量設置爲 50%,3)偏移方向外邊距設置爲元素寬度一半乘以-1</div> </div> </body> </html>
top和left 爲 50%, margin的left和top爲自身寬高一半post
.center { position: absolute; top: 50%; left: 50%; margin-left: -9rem; margin-top: -5rem; }
top和lefe爲父元素一半剪自身一半字體
.center { position: absolute; top: calc(50% - 5em); left: calc(50% - 9em); }
使用CSS3 的 transform
將位置在中心點平移自身寬高一半flex
.center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wrapper { display: flex; } .center { margin: auto; }
父元素指定子元素居中。
.wrapper { display: flex; align-items: center; justify-content: center; }
不要求原生有固定的寬高,可是這種居中是在整個頁面窗口內居中,不是基於父元素
.center{ margin: 50vh auto; transform: translateY(-50%); }