我正在尝试在包含背景的 div 上放置一个包含可点击图片的 div。但是,这种情况一直在发生:
http://gyazo.com/2144dfe91b46898e125787b2f5249542
它在图像下方,我不明白为什么。
这是我的代码:
!DOCTYPE html>
<html>
<head>
<title>SlammedPK</title>
<link rel="shortcut icon" href="dragonclaws.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="style.css">
<style type"text/css">
#title{
height:100%;
width:100%;
display:inline-block;
}
#forum{
height:10%;
width:10%;
background-image:forum.png;
display:block;
}
</style>
</head>
</body>
<div id="container">
<div id="title" style="position:relative" alt="title">
<img src='fulltitle.png' style='width:100%;height:100%' alt='[]' />
</div>
<div id="forum" style="position:absolute" alt="forum">
<A HREF="http://google.com"><IMG SRC="forum.png" ALT="forum"></A>
</div>
</div>
</body>
</html>
如果你能帮忙,那就太好了。