是的,還有其他的問題;但我無法按照他們的指示製作這個div中心。爲什麼?無法水平居中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;
}
您的文檔是否有文檔類型聲明? – Matthew
不需要額外的div ... – poke
Matthew - HTML頁面。打 - 不如現在。我試圖在外部創建一個具有背景顏色的div,然後將我的內部div集中在該外部div中。 –