gehuangyi20 / ie7-js

Automatically exported from code.google.com/p/ie7-js
0 stars 0 forks source link

Navigation dissapears in IE9 (using IE9.js) #282

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The following code makes the navigation (that works in IE8) not show at all in 
the new IE9 Beta 1 (released yesterday (sep 15, 2010). You can see this in 
action by viewing www.codeaero.com in IE9 and then in Chrome or IE8 etc.

Please let me know if I need to send you any additional code/info.

Here is the specific code:
 header nav {
    float:right;
}
    header nav ul {
        float:right;
        padding-right:49px;
        top:51px;
        position:relative;
    }
        header nav ul li {
            float:left;
            width:60px;
        }
        header nav ul li a {
            font-size:26px;
            color:#fff;
            text-decoration:none;
            font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
            background:#000;
            -moz-transform: rotate(270deg);
            -webkit-transform: rotate(270deg);
            -o-transform: rotate(270deg);
            transform: rotate(270deg);
            filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
            display:block;
            height:58px;
            width:160px;
            line-height:58px;
            text-indent:18px;
        }
        header nav ul li a:hover, header nav ul li a.current {
            background:#ee7722 !important;
        }

Original issue reported on code.google.com by supp...@codeaero.com on 16 Sep 2010 at 8:05

GoogleCodeExporter commented 9 years ago
IE9.js does not fix MSIE9. It is not even loaded on your page as you have 
included it in conditional comments.

Original comment by dean.edw...@gmail.com on 16 Sep 2010 at 6:20