国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

垂直居中

sarva / 1899人閱讀

1.line-height

html :

div.parent
    div.child

css :

.parent
    height 736px
    line-height @height
2.display: table

html :

div.parent
    div.child

css :

.parent
    display table
.child
    display table-cell
    vertical-align middle
3.position

html :

div.parent
    div.child

css :

.parent
    position relative        
.child
    position absolute
    top 50%
    height 736px
    margin-top -(@height / 2)
4.position

html :

div.parent
    div.child

css :

.parent
    position relative
.child
    position absolute
    top 0
    bottom 0
    margin auto
5.padding

html :

div.parent
    div.child

css :

.parent
    padding 5% 0
.child
    padding 10% 0
6.float

html :

div.parent
    div.floater
    div.child

css :

html, body
    height 100%       
    .parent 
        height @height
    .floater
        float left
        height @height / 2
        width @height
        margin-bottom -50px
    .child
        clear both
        height 100px
7. :before

要求display inline-block
html :

div.parent
    div.child

css :

.parent:before 
    content ""
    display inline-block
    height 100%
    vertical-align middle
.child
    display inline-block
    vertical-align middle
8.translate

html :

    div.parent
        div.child

css :

.parent            
    height 100%
    position relative
    .child    
        position absolute
        top @height / 2
        transform translateY(-50%)
9. display: box

html :

div.parent
    div.chlid

css :

.parent
    display -webkit-box
    -webkit-box-align center
10.flex

html :

div.parent
    div.child

css :

.parent
    display flex
    align-items center
        

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/112162.html

相關文章

  • 網頁設計的垂直居中

    摘要:推薦閱讀原文原文鏈接網頁設計的垂直居中此系列為網頁設計中經常使用到的垂直居中解決方法,通過本文進行詳細地總結。 推薦閱讀原文 原文鏈接:網頁設計的垂直居中 此系列為網頁設計中經常使用到的垂直居中解決方法,通過本文進行詳細地總結。 使用line-height做垂直居中 See the Pen 使用line-height做垂直居中 by whjin (@whjin) on Co...

    Scholer 評論0 收藏0
  • 水平居中垂直居中、水平垂直居中、浮動居中、絕對定位居中.......幫你搞定

    摘要:包括水平居中,垂直居中,還有水平垂直居中。如果要再要細分,還要分浮動元素絕對定位的居中。樣式水平居中的元素圖片的水平居中圖片的居中,比較特殊。 2018.05.29 居中一個元素?你會想到啥?這里面的知識還真不少。包括水平居中,垂直居中,還有水平垂直居中。如果要再要細分,還要分浮動元素、絕對定位的居中。為了代碼簡介,沒有加背景和其他樣式,需要看效果的,可以加上背景。 目錄: 第一...

    waterc 評論0 收藏0
  • 水平垂直居中

    摘要:筆記整理之一水平垂直居中固定寬高一般使用負值進行居中不固定寬高一般使用和進行下面三種方案平常都很少被使用的到移動端一般使用方案在移動端都可以使用文本水平垂直居中文本垂直文本垂直居中移動端水平垂直居中垂直居中方案快級元素 筆記整理之一:水平垂直居中 PC固定寬高、一般使用maring負值進行居中PC不固定寬高、一般使用relative和left進行 下面三種方案平常都很少被使用的到 ...

    incredible 評論0 收藏0
  • 水平垂直居中

    摘要:筆記整理之一水平垂直居中固定寬高一般使用負值進行居中不固定寬高一般使用和進行下面三種方案平常都很少被使用的到移動端一般使用方案在移動端都可以使用文本水平垂直居中文本垂直文本垂直居中移動端水平垂直居中垂直居中方案快級元素 筆記整理之一:水平垂直居中 PC固定寬高、一般使用maring負值進行居中PC不固定寬高、一般使用relative和left進行 下面三種方案平常都很少被使用的到 ...

    eechen 評論0 收藏0
  • CSS-水平居中垂直居中、水平垂直居中

    摘要:水平居中水平居中可分為行內元素水平居中和塊級元素水平居中行內元素水平居中這里行內元素是指文本圖像按鈕超鏈接等,只需給父元素設置即可實現。 1、水平居中 水平居中可分為行內元素水平居中和塊級元素水平居中 1.1 行內元素水平居中 這里行內元素是指文本text、圖像img、按鈕超鏈接等,只需給父元素設置text-align:center即可實現。 .center{ te...

    scwang90 評論0 收藏0
  • CSS-水平居中垂直居中、水平垂直居中

    摘要:水平居中水平居中可分為行內元素水平居中和塊級元素水平居中行內元素水平居中這里行內元素是指文本圖像按鈕超鏈接等,只需給父元素設置即可實現。 1、水平居中 水平居中可分為行內元素水平居中和塊級元素水平居中 1.1 行內元素水平居中 這里行內元素是指文本text、圖像img、按鈕超鏈接等,只需給父元素設置text-align:center即可實現。 .center{ te...

    Lsnsh 評論0 收藏0

發表評論

0條評論

sarva

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<