disculpen el doble post pero acabo de encontrar una solucion a este problema y esta tal cual lo queria.
Gracias amigo me base en tu codigo, la verdad no hay mucho cambio.
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org">
<meta http-equiv="Content-type" content= "text/html; charset=utf-8">
<title>Sombra</title>
<style type="text/css">
<!-- * {
margin: 0;
padding: 0;
}
li {
display: inline;
padding: 1em;
}
a {
font-size: 2em;
color: #fff;
}
#container {
width: 800px;
margin: 2em auto;
}
#shadow {
display: block;
width: 600px;
height: 60px;
float: left;
position: relative;
margin: -1px 1px 0;
background: #666 ;
}
#nav {
width: 100%;
height: 100%;
position: absolute;
margin: -1px 1px 0;
background: darkred no-repeat bottom left;
}
.presombra{
display: block;
width: 600px;
height: 60px;
float: left;
position: relative;
background: #CCC;
}
-->
</style>
</head>
<body>
<div id="container">
<div class="presombra">
<div id="shadow">
<div id="nav">
<ul>
<li>
<a href="#">item</a>
</li>
<li>
<a href="#">item</a>
</li>
<li>
<a href="#">item</a>
</li>
<li>
<a href="#">item</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>
Saludos y gracias.