zoukankan      html  css  js  c++  java
  • IE7下的css style display的兼容处理

        今天在做一个由js动态控制的div时,出现了一些iE7与iE6不兼容的现像。
        以前在IE6下,一般显示/隐藏某一div时,一般都设置div的style:display=none|block来实现,但今天发现该设置不能在IE7下工作,于是查询了MSDN上的相关资料:

    display Attribute | display Property

    Sets or retrieves whether the object is rendered.

    Syntax

    HTML { display : sDisplay }
    Scripting [ sDisplay = ] object.style.display

    Possible Values

    sDisplay String that specifies or receives one of the following values.
    block Object is rendered as a block element.
    none Object is not rendered.
    inline Default. Object is rendered as an inline element sized by the dimensions of the content.
    inline-block Object is rendered inline, but the contents of the object are rendered as a block element. Adjacent inline elements are rendered on the same line, space permitting.
    list-item Microsoft Internet Explorer 6 and later. Object is rendered as a block element, and a list-item marker is added.
    table-header-group Table header is always displayed before all other rows and row groups, and after any top captions. The header is displayed on each page spanned by a table.
    table-footer-group Table footer is always displayed after all other rows and row groups, and before any bottom captions. The footer is displayed on each page spanned by a table.

        最后将display值设为inline,IE7下工作正常。
  • 相关阅读:
    人月神话阅读笔记03(完)
    人月神话阅读笔记02
    各种前端好用的在线工具、学习网站、插件
    垂直居中css
    输入框判断表情的输入js
    jq九宫格抽奖
    移动端中一像素的解决方案
    获取url地址栏中的参数数据
    ios中getTime()的兼容性问题
    清除Css中select的下拉箭头样式
  • 原文地址:https://www.cnblogs.com/taobataoma/p/965801.html
Copyright © 2011-2022 走看看