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下工作正常。




    本文转自 OldHawk  博客园博客,原文链接:http://www.cnblogs.com/taobataoma/archive/2007/11/20/965801.html,如需转载请自行联系原作者


相关文章
|
前端开发 容器
CSS display属性的作用
CSS display属性
154 0
CSS display属性的作用
|
5月前
|
前端开发
CSS中的display属性:布局控制的关键
CSS中的display属性:布局控制的关键
162 42
|
4月前
|
前端开发 C++
CSS【详解】 标准盒模型 VS IE 盒模型
CSS【详解】 标准盒模型 VS IE 盒模型
50 0
|
4月前
|
编解码 前端开发 C++
CSS【详解】布局 display ( 含 flex 布局,grid 布局,table 布局,float 布局,响应式布局 等)
CSS【详解】布局 display ( 含 flex 布局,grid 布局,table 布局,float 布局,响应式布局 等)
141 0
|
4月前
|
前端开发
css display position float 之间的关系
css display position float 之间的关系
25 0
CSS3【display: flex;】与【align-items: 侧轴对齐方式;】的使用
CSS3【display: flex;】与【align-items: 侧轴对齐方式;】的使用
78 0
CSS3【display: flex;】与【flex: 占用比例;】的使用
CSS3【display: flex;】与【flex: 占用比例;】的使用
97 0
CSS3【display: flex;】自适应布局案例
CSS3【display: flex;】自适应布局案例
103 0
|
11月前
|
前端开发
在vue2的style标签中使用css变量
在vue2的style标签中使用css变量
224 0
|
前端开发 JavaScript UED
css中什么是响应式设计?响应式设计的基本原理是什么?如何兼容低版本的IE?
css中什么是响应式设计?响应式设计的基本原理是什么?如何兼容低版本的IE?
74 0