
Dropdown menu and border-radius / box-shadow
Hello
i've created a dropdown menu with nested <ul> et <li>.
but i didn't manage to make border-radius working in IE for menu items :
Code:
#menudesktop > ul > li:nth-child(2):hover {
border:none;
background-color:#009cd6;
border-radius:5px 5px 0 0;
-moz-border-radius:5px 5px 0 0;
-webkit-border-radius:5px 5px 0 0;
-o-border-radius:5px 5px 0 0;
behavior: url(css/PIE.htc);
}
if i add position:relative then the submenu (which have position:absolute) is hidden and border-radius still not working
i tried without the :hover but still not working
i don't understand where i'm wrong
> another bug : box-shadow is working thx to css3pie but it's causing a space on the right of the div (this div is behind the menu)
i did the same with footer
div with shadow is inside footer tags
i managed to get rid of the space by adding this code :
Code:
.lt-ie9 footer {
overflow: hidden;
height:105px;
}
i tried the same for my menu problem but didn't work
here's a live demo :
http://divstudio.fr/test/abpieh/index2.htmlany ideas ?
thx a lot for your help !
