垂直水平居中 多种实现
Posted zzzzzzzsy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了垂直水平居中 多种实现相关的知识,希望对你有一定的参考价值。
1.postiton 元素已知宽度
<style> /* 父相对 子绝对 子上下 margin l t -一半PX */ #box{ background-color: lightblue;width: 300px;height:300px; position: relative; } #content{ position: absolute;background-color: tomato; height: 100px;width: 100px; left: 50%;top: 50%;margin: -50px 0 0 -50px; } </style> </head> <body> <div id="box"> <div id="content"> </div> </div> </body>
以上是关于垂直水平居中 多种实现的主要内容,如果未能解决你的问题,请参考以下文章