1.父相對(position: relative
),子絕對(position: absolute
),給子元素top
: 50%;left
: 50%;margin-top
: -50px;margin-left
: -50px;
2.將父元素設為彈性盒子(display: flex)
,然後在給父元素align-items: center; justify-content: center;
3.父相對(position: relative
),子絕對(position: absolute
),給子元素所有定位都設為0,(上下左右),margin設定auto自適應。
>
#father
#son
style
>
head
>
>
"father"
>
"son"
>
div>
div>
body
>
>
#father
#son
style
>
head
>
>
"father"
>
"son"
>
div>
div>
body
>
>
#father
#son
style
>
head
>
>
"father"
>
"son"
>
div>
div>
body
>
>
#father
#son
style
>
head
>
>
"father"
>
"son"
>
div>
div>
body
>
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...