我的网站的第一部分有背景图片,但该部分有填充顶部,以便从导航栏中分隔第一个标题。有没有办法让背景图像超过顶部填充?
由于
HTML
<nav>
<a href="#getting-his-start"><b>Getting his Start</b></a>
<a href="#cinematic-revolution"><b>Cinematic Revolution</b></a>
<a href="#experimental-phase"><b>The Experimental Phase</b></a>
<a href="#logos-made-to-last"><b>Logos Made to Last</b></a>
<a href="#the-nect-big-thing"><b>The Next Big Thing</b></a>
<a href="#his-influence-today"><b>His Influence Today</b></a>
</nav>
<section class="start">
<h2 id="getting-his-start">Getting his Start</h2>
背景图片的CSS
.start {
background-image: url(../images/goldenarmamend.png);
background-position: top right;
height: 100%vh;
width: 100%vw;
}
CSS为h3提供空间
h3 {
font-size: 1.5em;
margin-top: 3em;
margin-bottom: 0.7em;
text-transform: uppercase;
}
答案 0 :(得分:-1)
添加margin-top而不是padding-top并将标题向上移动,带有负边距top。 如果您可以在该部分共享代码段,则可以给出确切的答案。