Пометка списка исчезает в IE7

О

Итак, этот вопрос задавали снова и снова, но я заметил кое-что немного другое; см. Ниже .

Стандартная информация:

  • Маркер отображается в FF
  • Маркер не отображается в IE

Поиск

  • Маркер исчезает при установке hasLayout на
      , а не
    • ; это часто достигается при выполнении * {zoom: 1}

    Firebug в Internet Explorer

    UL:

    backgroundAttachment       "scroll" 
    backgroundColor            "transparent" 
    backgroundImage            "none" 
    backgroundRepeat           "repeat" 
    borderBottomColor          "#000000" 
    borderBottomStyle          "none" 
    borderBottomWidth          "medium" 
    borderCollapse             "separate" 
    borderColor                "#000000" 
    borderLeftColor            "#000000" 
    borderLeftStyle            "none" 
    borderLeftWidth            "medium" 
    borderRightColor           "#000000" 
    borderRightStyle           "none" 
    borderRightWidth           "medium" 
    borderStyle                "none" 
    borderTopColor             "#000000" 
    borderTopStyle             "none" 
    borderTopWidth             "medium" 
    borderWidth                "medium" 
    bottom                     "auto" 
    clear                      "none" 
    color                      "#000000" 
    cursor                     "move" 
    direction                  "ltr" 
    display                    "block" 
    fontFamily                 "tahoma, arial, helvetica, sans-serif" 
    fontSize                   "0.9em" 
    fontStyle                  "normal" 
    fontVariant                "normal" 
    fontWeight                 400 
    height                     "auto" 
    left                       "auto" 
    letterSpacing              "normal" 
    lineHeight                 "normal" 
    listStyleImage             "none" 
    listStylePosition          "outside" 
    listStyleType              "disc" 
    margin                     "auto auto auto 30pt" 
    marginBottom               "auto" 
    marginLeft                 "30pt" 
    marginRight                "auto" 
    marginTop                  "auto" 
    maxHeight                  "none" 
    maxWidth                   "none" 
    minHeight                  "auto" 
    minWidth                   "auto" 
    overflow                   "visible" 
    padding                    "0px" 
    paddingBottom              "0px" 
    paddingLeft                "0px" 
    paddingRight               "0px" 
    paddingTop                 "0px" 
    pageBreakAfter             "auto" 
    pageBreakBefore            "auto" 
    position                   "static" 
    right                      "auto" 
    tableLayout                "auto" 
    textAlign                  "left" 
    textDecoration             "none" 
    textIndent                 "0pt" 
    textTransform              "none" 
    top                        "auto" 
    unicodeBidi                "normal" 
    verticalAlign              "auto" 
    visibility                 "inherit" 
    whiteSpace                 "normal" 
    width                      "auto" 
    wordSpacing                "normal"     
    

    LI:

    backgroundAttachment       "scroll" 
    backgroundColor            "transparent" 
    backgroundImage            "none" 
    backgroundRepeat           "repeat" 
    borderBottomColor          "#000000" 
    borderBottomStyle          "none" 
    borderBottomWidth          "medium" 
    borderCollapse             "separate" 
    borderColor                "#000000" 
    borderLeftColor            "#000000" 
    borderLeftStyle            "none" 
    borderLeftWidth            "medium" 
    borderRightColor           "#000000" 
    borderRightStyle           "none" 
    borderRightWidth           "medium" 
    borderStyle                "none" 
    borderTopColor             "#000000" 
    borderTopStyle             "none" 
    borderTopWidth             "medium" 
    borderWidth                "medium" 
    bottom                     "auto" 
    clear                      "none" 
    color                      "#000000" 
    cursor                     "move" 
    direction                  "ltr" 
    display                    "block" 
    fontFamily                 "tahoma, arial, helvetica, sans-serif" 
    fontSize                   "0.9em" 
    fontStyle                  "normal" 
    fontVariant                "normal" 
    fontWeight                 400 
    height                     "auto" 
    left                       "auto" 
    letterSpacing              "normal" 
    lineHeight                 "normal" 
    listStyleImage             "none" 
    listStylePosition          "outside" 
    listStyleType              "disc" 
    margin                     "auto" 
    marginBottom               "auto" 
    marginLeft                 "auto" 
    marginRight                "auto" 
    marginTop                  "auto" 
    maxHeight                  "none" 
    maxWidth                   "none" 
    minHeight                  "auto" 
    minWidth                   "auto" 
    overflow                   "visible" 
    padding                    "0px" 
    paddingBottom              "0px" 
    paddingLeft                "0px" 
    paddingRight               "0px" 
    paddingTop                 "0px" 
    pageBreakAfter             "auto" 
    pageBreakBefore            "auto" 
    position                   "static" 
    right                      "auto" 
    tableLayout                "auto" 
    textAlign                  "left" 
    textDecoration             "none" 
    textIndent                 "0pt" 
    textTransform              "none" 
    top                        "auto" 
    unicodeBidi                "normal" 
    verticalAlign              "auto" 
    visibility                 "inherit" 
    whiteSpace                 "normal" 
    width                      "auto" 
    wordSpacing                "normal"
    


    Любая идея, почему установка макета на

      изменяет bullet?
      Я подумал, что это могут быть поля / отступы, но Firebug в IE показывает то же самое без hasLayout.


      Пример голой страницы:

         <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
         <html>
         <head>
            <title>Default</title>
            <style type="text/css" media="all">ul {zoom:1;}</style>
         </head>
         <body>
            <ul>
               <li>foo</li>
               <li>bar</li>
               <li>foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
                   foo bar foo bar foo bar foo bar foo bar foo bar foo bar foo bar
               </li>
            </ul>
         </body>
         </html>
      

      Попробуйте описанное выше в IE7 без масштабирования: 1 .
      Примечание. поскольку это связано с hasLayout, вероятно, затронуты другие версии IE.

8
задан BoltClock 30 November 2012 в 14:12
поделиться