-1

Web サイトを作成しましたが、ヘッダー メニューに問題があります。Internet Explorer 9 ではドロップダウンが機能しません。Web サイトのアドレスは次のとおりです: 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 に答える