是的,对此还有其他问题;但我无法按照他们的指示制作这个 div 中心。为什么?
HTML
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div>
<div class="center"></div>
</div>
</body>
</html>
CSS:
body {
line-height: 1;
}
.center {
position: fixed;
display: block;
margin-left: auto;
margin-right: auto;
width: 300px;
}