<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="index01.css"> <title>居中佈局的幾個實現方案</title> </head> <body> <div class="left"></div> <div class="right">DEMO</div> </body> </html>
標籤結構很簡單,就是一個父元素裏面套了一個子元素css
想要實現左右佈局,只須要把<div class="left"></div>
設置成向左浮動,右邊向右浮動html
.left{ float: left; } .right{ float: right; }
或者把left和right設置成inline-block佈局
.left{ display: inline-block } .right{ display: inline-block }
html
結構<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="index01.css"> <title>居中佈局的幾個實現方案</title> </head> <body> <div class="parent"> <div class="child">DEMO</div> </div> </body> </html>
標籤結構很簡單,就是一個父元素裏面套了一個子元素flex
text-align
和inline-block
實現text-align
只針對inline
元素有效,所以,能夠在父元素設置text-align:center
,而後改變子元素display:block
爲inline-block
.index01.css
的代碼爲:.parent{ height: 200px; background-color: gray; text-align: center; } .child{ background-color: yellowgreen; height: 200px; width: 200px; display: inline-block; }
display:table
和margin:0 auto
實現margin:0 auto
實現水平居中display:table
這個元素的做用就像 <table>
元素. 它定義了一個塊級盒子.index02.css的代碼爲;spa
.parent{ height: 200px; background-color: gray; } /*display:table 在表現形式上很像是block元素 寬度跟着內容走。 */ .child{ display: table; margin: 0 auto; background-color: greenyellow; height: 200px; width: 200px; text-align: center; line-height: 200px; }
position:absolute
和left: 50%
以及transform: translateX(-50%)
實現position: relative
left:50%
則能夠根據左邊進行定位transform
,則能夠根據自身的寬度偏移index03.css的代碼爲:code
.parent{ height: 200px; background-color: gray; position: relative; } .child{ position: absolute; left: 50%; transform: translateX(-50%); height: 200px; background-color: greenyellow; }
flex
+justify-content
實現display:flex
,則第一級子元素是flex-item
justify-content: center;
就能夠實現居中/////////orm
margin:0 auto
實現居中index04.css的代碼爲:htm
.parent{ height: 200px; background-color: gray; display: flex; justify-content: center; } .child{ height: 200px; background-color: greenyellow; /* margin: 0 auto; */ }
左中右佈局參考一的左右佈局,可將三個元素都設置成float:left
或者將三個元素都設置成dispaly:inline-block
it
4、垂直居中io
height
和line-height
設置垂直居中display:flex和
align-items: center`