表格单元格使用比标准类更亮的颜色突出显示

时间:2015-05-20 06:58:50

标签: css twitter-bootstrap-3

我有一个表,它使用一些标准的内置类来为表格单元格着色,例如:

<td class="text-center success">

我被要求让这些更明亮,例如让它变得更亮绿色。我不确定进行此更改的最佳方式。我不想编辑&#34;成功&#34;类颜色所以需要定义一个更亮的绿色,但不知道从哪里去。

3 个答案:

答案 0 :(得分:0)

您可以从此处自定义config.json http://getbootstrap.com/customize/

或者您可以从bootstrap Less Source或SASS Source中专门手动更改所需的内容。你可以从这里得到那些

http://getbootstrap.com/getting-started/

答案 1 :(得分:0)

<td class="text-center success brighter-green">

<强> CSS

.brighter-green {
   background-color: #2ECC71; /* For background color change */
   color: #2ECC71; /* For text color change */
}

答案 2 :(得分:0)

向所需元素添加一个addclass

<td class="text-center success custom-success">
.custom-success{color:/*custom-color*/}