CSS中的类型选择器

选择器是将在其中应用样式的HTML标签。这可以是任何标签,例如<h1>或<table>等。

使用类型选择器,为h1,h2,h3,p等HTML标签设置:

h2 {
   color: #FF0000;
}

设置为p:

p {
   color: #800000;
}