1)定位實現:父元素設定除了static之外的任何position值 width/height;子元素設定position:absolute top/right/bottom/left:0 margin:auto width/height
<
!doctype html>
"zh"
>
"utf-8"
/>
css水平垂直居中實現方式--定位實現<
/title>
"text/css"
>*.p
.c<
/style>
<
/head>
="p"
>
="c"
>
子元素<
/div>
<
/div>
<
/body>
<
/html>
2)table-cell布局:父元素設定display:table-cell vertical-align:middle(垂直居中) width/height 子元素設定margin:0 auto(水平居中) width/height
<
!doctype html>
"zh"
>
"utf-8"
/>
css水平垂直居中實現方式--定位實現<
/title>
"text/css"
>*.p
.c<
/style>
<
/head>
="p"
>
="c"
>
子元素<
/div>
<
/div>
<
/body>
<
/html>
3)flex布局:有瀏覽器相容問題,父元素設定display:flex align-items:center(垂直居中) justify-content:center(水平居中) width/height
子元素設定width/height
<
!doctype html>
"zh"
>
"utf-8"
/>
css水平垂直居中實現方式--定位實現<
/title>
"text/css"
>
*.p
.c <
/style>
<
/head>
="p"
>
="c"
>
子元素<
/div>
<
/div>
<
/body>
<
/html>
4)translate+relative定位:有瀏覽器相容問題,父級設定width/height 子元素設定position:relative top:50% left:50% transform:translate(-50%,-50%) width/height
<
!doctype html>
"zh"
>
"utf-8"
/>
css水平垂直居中實現方式--定位實現<
/title>
"text/css"
>
*.p
.c <
/style>
<
/head>
="p"
>
="c"
>
子元素<
/div>
<
/div>
<
/body>
<
/html>
css實現水平居中 垂直居中 垂直水平居中布局
1.只需要把行內元素包裹在乙個屬性display為block的父層元素中,並為父層元素新增如下屬性即可 parent2.塊狀元素解決方案 item3.多個塊狀元素解決方案將元素的display屬性設定為inline block,並且把父元素的text align屬性設定為center即可 paren...
css 水平居中 垂直居中 水平垂直居中
一 水平居中 1 行內元素水平居中text align center 2 塊級元素水平居中margin 0 auto 3 多個塊狀元素的水平居中 實現多個水平排列的塊狀元素的水平居中,是將要水平排列的塊狀元素設為display inline block,然後在父級元素上設定text align ce...
css水平居中 垂直居中 水平垂直居中
css水平居中 垂直居中 水平垂直居中 水平居中 行內元素 block text align 塊級元素 方案一 分寬度定不定兩種情況 定寬度 margin 0 auto 作用 使盒子自己居中,意思是上下距離為0,auto就是左右自適應兩邊距離 不定寬度 設定子元素display inline blo...