css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:相对绝对定位 - 1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:相对绝对定位 - 1相关的知识,希望对你有一定的参考价值。

/* center by traditional relative/absolute position */
/* parent */
.box.box_centerByAbsolute {
 position: relative;
}

/* child */
.box.box_centerByAbsolute .content {
 position: absolute;
 top: 50%;
 left: 50%;
 margin-left: -90px; /* box 的宽度是 180px */
 margin-top: -50px; /* box 的高度是 100px */
}

以上是关于css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:相对绝对定位 - 1的主要内容,如果未能解决你的问题,请参考以下文章

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:基于viewport的居中

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:5。 CSS中的transform属性

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:6。通过flex布局

html 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:1。 HTML结构

css实现绝对定位元素居中

Web前端HTML5&CSS311-定位的简介