我在没有显示 div 的地方遇到了这个问题。代码很简单,仅在测试:
<html>
<head>
<title>Main</title>
<style>
.simple-div {
-moz-border-radius: 15px;
border-radius: 15px;
height: 200px;
width: 200px;
}
</style>
</head>
<body style="background:url('backgrounds/cupcakeBG.jpg') 50% -105px repeat;">
<div style="background: #C8BBBE; top:0px; left:0px; width:100%; height:70px; position: fixed; -moz-border-radius: 15px; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px;">
</div>
<div style="-moz-border-radius: 15px; border-radius: 15px; height: 200px; width: 200px;">
</div>
</body>
</html>
如何将第二个 div 保持在背景图像上方?它目前没有显示在屏幕上,但我可以通过 chrome 使用 Inspect 元素看到它在后面突出显示。
问候,