方法一:
對一個div進行以下設置即可實現(xiàn)居中。
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>
新聞熱點
疑難解答