案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE HTML>
2
<html>
3
<head>
4
<style type="text/css">
5
h1 > strong {color:red;}
6
</style>
7
</head>
8
9
<body>
10
<h1>This is <strong>very</strong> <strong>very</strong> important.</h1>
11
<h1>This is <em>really <strong>very</strong></em> important.</h1>
12
</body>
13
</html>
14