背景画像である画像が1つあり、ページ全体に広がります
メニューバーもあります(テキストなし)
4 つのテキスト画像ファイル (about、home など) があります。
背景画像の上に配置したい
しかし、そうすると、フルスクリーンでない場合、メニューバーのサイズが変更されます
これが私がこれまでに持っているものです これを行う簡単な方法があれば教えてください
<html>
<style>
body
{
background: url("http://imageshack.us/a/img84/4772/backgroundnomenutext.png")
no-repeat scroll;
background-size: 100% 100%;
min-height: 700px;
}
</style>
</head>
<body>
<div style="position:relative">
<a href="http://www.google.com">
<img src="http://imageshack.us/a/img835/7200/homefw.png"
style = "position:absolute; top: 160px; left: 100px;"/>
</div>
</body>
</html>