/* HTML */
<header role="heading">
<div class="logo">
<h1><a href="/">this is the banner</a></h1>
</div>
<header>
/* CSS */
header
{
background-color: rgb(255, 165, 0);
height: 160px;
width: 100%;
}
header .logo
{
margin: 30px auto;
width: 980px;
}
所以,我希望 for.logo
居中header
,它确实......但它header
从顶部拉出 30px。
我尝试过制作header
相对,但这只会导致居中(30px 自动)不起作用。
任何意见,将不胜感激!