style中display的使用

display:none改div不会显示,默认为 inline,可以显示出来。

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

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 
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.


<div style="height:276px;width:350px;line-height:20px;overflow-y:scroll;
overflow-x:hidden;background:#fff;display:none" id="LrcShower_div">2121</div>

 

你可能感兴趣的:(html)