方法一:
对一个div进行以下设置即可实现居中。
CSS Code复制内容到剪贴板
<style>
#a{
position: fixed;
top: 0px;
left: 0px;
rightright: 0px;
bottombottom: 0px;
margin: auto;
}
</style>
XML/HTML Code复制内容到剪贴板
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
margin: 0px;
padding: 0px;
}
#a{
width: 200px;
height: 200px;
background-color: aquamarine;
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
margin: auto;
}
</style>
</head>
<body>
<p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p>
<p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p>
<p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p><p>123</p>
新闻热点
疑难解答