HTML 参考手册
HTML <style> type 属性
在 <style> 标签中使用 type 属性
源代码:
点击运行 »
<style type="text/css"> h1 { color: red; } p { color: blue; } </style>
x
1
<
style
type
=
"text/css"
>
2
h1
{
3
color
:
red
;
4
}
5
6
p
{
7
color
:
blue
;
8
}
9
</
style
>
运行结果:
点击运行 »