| 
              <html><head>
 <title>样式继承</title>
 <meta http-equiv="content-type" content="text/html;charset=gb2312">
 <style type="text/css">
 <!--
 p {color:red}
 td {color: blue ;border: 1 solid #333333;}
 .import {color:red}
 -->
 </style>
 </head>
 <body>
 <p>
 我的地址为:
 <span id="myAddress">北京市朝阳区11号</span>
 欢迎来我家做客。
 </p>
 <table>
 <tr>
 <td>
 样式的一个最大的特征就是有<span class="import">继承性</span>!<br />
 但不是<span>所有的样式</span>都能被继承。
 </td>
 </tr>
 </table>
 </body>
 </html>
 
 |