我正在制作一个标题,我需要它占据身体的整个宽度。我已经尝试width: 100%;
过标题div
,但两边仍然有空白。我尝试将它向左移动并使宽度超过 100%,但所做的只是添加一个水平滚动条,如果向右滚动,它的右侧仍然会有空白。
HTML:
<div id="header">
<img id="logo" src="images/logo.png" alt="">
<div id="nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="gallery.html">Gallery</a>
<a href="contact.html">Contact</a>
</div>
</div>
CSS:
#header {
position: relative;
left: -9px;
bottom: 8px;
padding-top: 5px;
padding-bottom: 5px;
background: url(images/dark_dotted.png);
width: 105%;
text-align: center;
border-bottom: 4px orange solid;
}
#header #logo {
padding-right: 700px;
}
#nav {
position: relative;
bottom: 30px;
font-size: 28px;
right: -300px;
font-family: roboto;
}