我有一个简单的边框样式说:

.border
{
   /*content*/
}


我希望其他几个类继承此边框样式。只能在CSS中完成吗?
还是我也需要在HTML中指定它?

我想要:

.actionArea : .border
{
     /*content */
}


还是只能通过HTML来完成,例如:

<div class="actionArea border"/>


如果只有后者可能会很烦人。

更新资料
这足够好,但仍然有点难看:

.actionArea, .otherArea, .anotherArea
{
    /*border specification */
}

.actionArea
{
    /*area specification/*
}

.otherArea
{
    /*area specification/*
}

(..)

最佳答案

您将需要使用诸如LESS之类的CSS框架。

07-26 09:29