-1

我创建了一个网站,但标题菜单有一些问题。下拉菜单在 Internet Explorer 9 中不起作用。这是网站地址:http ://thankgodforplexus.com/

&这里是导航的CSS:http: //pastebin.com/jWZJASHL

4

1 回答 1

2

只需从css下方删除相对位置,它将在ie9中工作。更正小提琴链接

.header-nav {
        /* Layout & positioning */
        display: block;
        /*position: relative;*/
        margin: 10px auto 0;
        padding: 0;
        height: 43px;
        width: 870px;
        list-style: none;
        border-radius: 0 0 10px 10px;
        z-index: 1000;

        /* Background */
        background: #e777b1; /* Old browsers */
        background: -moz-linear-gradient(top,  #e777b1 0%, #e0548f 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e777b1), color-stop(100%,#e0548f)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #e777b1 0%,#e0548f 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #e777b1 0%,#e0548f 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #e777b1 0%,#e0548f 100%); /* IE10+ */
        background: linear-gradient(to bottom,  #e777b1 0%,#e0548f 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e777b1', endColorstr='#e0548f',GradientType=0 ); /* IE6-9 */

}
于 2013-09-19T09:32:42.013 回答