您好,欢迎访问一九零五行业门户网

HTML5 对各个标签的定义与规定:style

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中文论坛 onclick=changecolor()/&
其它类似信息

推荐信息