如何解决这个wordpress css3问题

时间:2013-09-19 09:03:50

标签: wordpress css3

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

&安培;这是导航的CSS:http://pastebin.com/jWZJASHL

1 个答案:

答案 0 :(得分:2)

只需删除相对于css下方的位置即可在ie9中使用。已更正Fiddle Link

.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 */

}