CSS菜单栏移出背景图片

时间:2015-12-06 09:32:18

标签: html css html5 css3

我正在为学校做项目,我们必须制作一个网页。由于这是我第一次做这样的事情,我有一点问题。问题是当我的屏幕宽度变小时,我的菜单栏会移出我的背景图像。你可以在这里看到它:https://r0590903.webontwerp.khleuven.be/website/html/

我的HTML:

nav {
	background: url(Images/HeaderDepot.jpg);
	height: 469px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: 100%;
	margin-top: -50px;
	display: inline-block;
	
}

ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

ul li {
	display: block;
	position: relative;
	float: left;
	
}

li ul {
	display: none;
}

ul li a {
	display: block;
	padding: 7px;
	text-decoration: none;
	white-space: nowrap;
	color: #000;
	background-color: #FFF;
	opacity: 0.75;
	margin-right: 10px;
	margin-top: 430px;
}
    <div class="header-container">
		<header class="wrapper clearfix">
			<nav class="nav">
				<a href="HTMLDepot39HomepaginaEN.html" id="taal">EN</a>
				<a href="index.html" id="taal2">NL</a>
				<ul class="ul">
					<li class="active"><a href="index.html">Home</a></li>
					<li><a href="HTMLDepot39FormulierNL.html">Reserveren</a></li>
					<li><a href="HTMLDepot39FotopaginaNL.html">Galerij</a></li>
				</ul>
			</nav>
		</header>
	</div>

我知道当你缩小页面时我的旁边还不对,但我现在的主要问题是菜单栏。

有什么想法来解决这个问题?提前谢谢!

1 个答案:

答案 0 :(得分:0)

background-size:100%标记中删除nav