javascript - 一个CSS垂直居中的问题
迷茫
迷茫 2017-04-11 11:49:10
0
4
388

父元素的高度不知道

子元素是一个类型为 a 的元素

样式大概是这个样子

这样子的话要怎么居中呢?

谢谢大家的解答啦~

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

répondre à tous(4)
刘奇

提供两种方法参考
flex:

parent {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
}

transform:

a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
Ty80

position:absolute;
top:0;
bottom:0;
left:0;
right:0;
margin:0 auto;

迷茫

line-height设置跟父层高度一样

阿神

父元素不定高啊,line-hight 没法设,还有一个方法,父元素设置display: tabel-cell . vertical-align:middle. 也是没问题,,且兼容ie8+

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!