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>
背景画像の上に 2 番目の div を保持するにはどうすればよいですか? 現在画面には表示されていませんが、クロムを介して Inspect 要素を使用して背後で強調表示されていることがわかります。
よろしく、