Home  >  Article  >  Web Front-end  >  HTML5中对style属性的解释与规定

HTML5中对style属性的解释与规定

WBOY
WBOYOriginal
2016-05-17 09:09:593620browse

所有HTML元素都可以设置style属性,用以设置CSS样式,其值需符合CSS样式书写标准。
为元素设置的style属性值,将覆盖相同的、以其他形式为其设置的css属性,例如外部文件。
应保证,当元素的style的属性值去掉之后,元素仍然可理解、可用。
element.style
将返回一个CSSStyleDeclaration对象,可以用来设置或返回元素的style属性值。
例如

document.getElementById('id_value').style.display = "none";


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn