【发布时间】:2017-09-09 14:23:16
【问题描述】:
我正在学习 css 和 html,但我遇到了这个问题,“.logo”div 类中的 margin-left 和 margin-right 不想让 div 居中。请帮忙,因为我做了研究,我检查了代码,一切看起来都很好,所以我不知道发生了什么。
body
{
background-color: #303030;
color: #ffffff;
}
.wrapper
{
width:100%;
}
.header
{
width:100px;
padding:40px 0;
}
.logo
{
width:450px;
font-size:48px;
border: 1px solid white;
margin-left: auto;
margin-right: auto;
}
<html lang="pl">
<head>
<meta charset="utf-8"/>
<title>site</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="logo">
LOGO
</div>
</div>
</div>
</body>
</html>
【问题讨论】:
-
问题是
.header小于.logo。