我将正文宽度设置为 1920px 并设置相同宽度的背景图像。该图像用于标题。因为我的身体内部有更窄的包装,如果我将标题背景放在标题本身,标题背景的宽度会被包装的边框切割。所以我把它放在正文中,但现在我在底部有水平滚动条,页面的中心向右移动。我怎样才能摆脱那个滚动条并使页面居中?这是代码:
body {
background-color: #f6f6f6;
background-image: url('../img/menu-background.png');
width: 1920px;
background-repeat: no-repeat;
font-family: 'PT Sans';
}
.wrapper {
width: 950px;
min-height: 1658px;
border: 1px solid grey;
margin: 0 auto;
}
header a {
text-decoration: none;
text-align: center;
display: block;
width: 365px;
margin-left: auto;
margin-right: auto;
}
和 HTML:
<body>
<div class="wrapper">
<header>
<a href="#">
<h1>Lorem ipsum</h1>
<span>bla-bla-bla</span>
</a>
</header>