下面的代码应该显示一个标题栏、一个页脚栏和一个图像,但由于某种原因,我一添加就.div1 { -webkit-transform-style: preserve-3d; }
只得到标题栏。我知道它似乎应用了一些不必要的 div 和样式,但我确实需要它们来实现我已经剥离的效果,以使调试更容易。我的页面代码是:
<html>
<head>
<title></title>
<style>
body {
margin: 0px;
}
.div1 {
-webkit-transform-style: preserve-3d;
}
.div2 {
position: absolute;
width: 100%;
height: 100%;
}
img {
max-width: 50%;
max-height: 50%;
display: block;
}
.footer {
position: fixed;
bottom : 0px;
}
</style>
</head>
<body>
<div class="div1">
<div class="div2">
<div class="header">
Header
</div>
<div class="imgdiv">
<img src="http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2012/5/18/1337331092888/Cwm-Idwal-Snowdonia.-Mich-007.jpg">
</div>
<div class="footer">
Footer
</div>
</div>
</div>
</body>
</html>