div在浏览器居中
Posted vera-7c
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div在浏览器居中相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
.way1{
width: 100px;
height: 100px;
background-color: #FFB6C1;
position: absolute;
top: 0;left: 0;bottom: 0;right: 0;
margin:auto auto;
}
.way2{
width: 100px;
height: 100px;
background-color: #FFB6C1;
position: absolute;
top: 50%;left: 50%;//左上角顶点
transform: translate(-50%,-50%);//向上和向左移动元素自身的50%
}
</style>
</head>
<body>
<div class="way2">
</div>
</body>
</html>
以上是关于div在浏览器居中的主要内容,如果未能解决你的问题,请参考以下文章