继承和覆盖CSS

时间:2013-10-25 10:30:26

标签: css

我一直在使用twitter-bootstrap CSS。我使用它的原因是因为我对CSS不太了解。现在,在我的代码中,我经常在已分配给类的元素上使用style。例如:

<div style="background-color: white" class="thumbnail"></div>

以上代码看起来不太好。该类可能已具有背景颜色属性。简化它的最有效方法是什么?

1 个答案:

答案 0 :(得分:2)

在存在的css末尾声明.thumbnail类,并使用您想要的值覆盖它。多数民众赞成。

对于实例,

   ..

   ..

   ..

    .thumbnail{
         background-color: white
    }

希望这有帮助。