DIV水平垂直居中
Posted 韩帅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DIV水平垂直居中相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> *{ margin:0; padding:0; } .box{ position: fixed; top:50%; left:50%; background-color: red; width: 100px; height: 100px; margin-left:-50px; margin-top:-50px; } </style> </head> <body> <div class="box"></div> </body> </html>
以上是关于DIV水平垂直居中的主要内容,如果未能解决你的问题,请参考以下文章