我的网站第一部分有一个背景图片,我需要触摸导航栏。手臂是背景图像。它需要触摸设计的导航栏。 background image
第一部分以标题(h3)开头,其上有填充顶部:
h3 {
font-size: 1.5em;
margin-top: 3em;
margin-bottom: 0.7em;
text-transform: uppercase; }
我需要背景来"忽略"填充因此它与导航栏之间没有间隙。
背景图片的CSS
.start {
background-image: url(../images/goldenarmamend.png);
background-position: top right;
height: 100%;
width: 100%;
希望这是有道理的!
答案 0 :(得分:0)
删除背景位置......
.start {
background-image: url(../images/goldenarmamend.png);
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 100%;
}
根据您的需要在像素或em中设置正确的值。