元素居中方法总结
Posted huwt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了元素居中方法总结相关的知识,希望对你有一定的参考价值。
通过给需要居中的元素加入如下属性:使用此种方法,该元素会相对第一个具有定位环境的父元素居中
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
margin: auto;
示例代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .fat{ width: 500px; height: 500px; border: solid 1px black; position: relative; } .sub{ width: 100px; height: 100px; border: solid 1px red; position: absolute; left: 0; top: 0; bottom: 0; right: 0; margin: auto; } </style> </head> <body> <div class="fat"> <div class="sub"></div> </div> </body> </html>
以上是关于元素居中方法总结的主要内容,如果未能解决你的问题,请参考以下文章