<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>
|