css 位置绝对中心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 位置绝对中心相关的知识,希望对你有一定的参考价值。

.child {
    position: absolute;
    top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate(-50%, -50%); /* This is a shorthand of
                                         translateX(-50%) and translateY(-50%) */
}

以上是关于css 位置绝对中心的主要内容,如果未能解决你的问题,请参考以下文章

css 中心位置:绝对

CSS 中心div与位置绝对

在 CSS/样式化组件的顶部中心对齐绝对位置

如何使用css将div位置绝对移动到中心? [复制]

如何使用css中的绝对位置将子div定位到每个父div的中心[重复]

CSS使用位置相对+绝对或负边距