修正は比較的簡単です。以下のようにルールからposition:relative
andを削除するだけです。残念ながら、IE はand とうまく動作しません。z-index
nav
position:relative
filter
nav{
background:#403a76;
background:-moz-linear-gradient(top,#483a76 0,#594990 100%);
background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#483a76),color-stop(100%,#594990));
background:-webkit-linear-gradient(top,#483a76 0,#594990 100%);
background:-o-linear-gradient(top,#483a76 0,#594990 100%);
background:-ms-linear-gradient(top,#483a76 0,#594990 100%);
background:linear-gradient(to bottom,#483a76 0,#594990 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#483a76',endColorstr='#594990',GradientType=0);
border-bottom:1px solid #393363;
box-shadow:0 1px 1px #615d8d;
height:5rem;
position:relative; /* delete this */
margin-bottom:0;
z-index:10 /* delete this */
}