proba.css
Код:
.flashmenu_container {
height: 490px;
}
.under_block {
height: 490px;
width: 910px;
position: relative;
z-index: 1;
margin-top: -40px;
}
.upper_block {
position: relative;
z-index: 2;
height: 40px;
}
.menu {
width: 185px;
line-height: 39px;
background-color: red;
}
.html
Код:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="STYLESHEET" type="text/css" href="proba.css">
</head>
<body>
<h1>Ошибочка</h1>
<div class="flashmenu_container">
<div class="upper_block">
<div class="menu">
Красный слой
</div>
</div>
<div class="under_block">
<img src="testimg.jpg" width="910" height="490" alt="">
</div>
</div>
</body>
</html>