How to fix display:inline-block on IE6?

前端 未结 3 2119
忘掉有多难
忘掉有多难 2020-12-10 16:07

How to fix display:inline-block; on IE6 ?

My html Page http://www.faressoft.org/tutorialTools/slideShow/

can I get the same result in ot

3条回答
  •  借酒劲吻你
    2020-12-10 16:16

    You have to re-specify display:inline; on block level elements in your IE style sheets.

    HTML:

    blah

    REGULAR CSS:

    .ImageSlideShow { display:inline-block; } 
    

    IE CSS:

    
    

    See: http://work.arounds.org/using-inline-block-ie7-and-ie6/

    BONUS:

    You should also specify display:inline; for .ImageSlideShow .ImageNum {} to alleviate another IE bug.

提交回复
热议问题