[tr][td]style标签用来定义网站的样式。
可设置属性 media :screen tty tv projection handheld print braille aural all type:text/css scoped:true 或者 false title:有不同的含义 type属性用于设置样式语言的种类,一般情况,也是默认值是text/css。 media属性用于设置该元素适用于哪种媒体,默认为all,即在适合任何媒体。 scoped用于定义该元素的适用范围,如果设置了该属性则意味着元素的作用效果只适用于其父级元素及下属子元素。 title如果有多个style元素设置title属性,那么只有其中一个生效。 Dom接口 代码: 全选 运行 interface HTMLStyleElement : HTMLElement { attribute boolean disabled; attribute DOMString media; attribute DOMString type; attribute boolean scoped; }; HTMLStyleElement implements LinkStyle; 代码实例 HTMLV.CN HTML5中文论坛 " /& [/td][/tr] |
|