实例代码:
1 <!doctype html>
2 <html>
3 <head>
4 <meta setchar="utf8">
5 <style>
6 p.center{
7 color:red;
8 text-align:center;
9
10 }
11 h1,h2{
12 text-align:center;
13 }
14 </style>
15
16 </head>
17 <body>
18 <h1 >指定类样式</h1>
19
20 <h2 class="oncss">两个元素只有指定的p元素才有css样式</h2>
21 <p class="center">居中的红色段落</p>
22 </body>
23 </html>
运行效果:
评论