技不如人

Welcome to Rickel's blog.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

在CSS中使用继承

Posted on 2005-05-08 14:06  Rickel  阅读(763)  评论(1编辑  收藏  举报
Suppose you have a table and you need to give styles to all the <TD> tags. Using inheritance to do this helps you avoid generating more content to be delivered to the client. Take this code, for example:

<table>
<td class=Cell></td>
<td class=Cell></td>
<td class=Cell></td>
</table>

This can be replaced with the following style sheet :
Table.Cell TD
{
  
}


<table class=Cell>
<td ></td>
<td ></td>
<td ></td>
</table>
This way, there's less code to download and it's easier to maintain.
From Devx:Prasad Haridass