我有一个表,它使用一些标准的内置类来为表格单元格着色,例如:
<td class="text-center success">
我被要求让这些更明亮,例如让它变得更亮绿色。我不确定进行此更改的最佳方式。我不想编辑&#34;成功&#34;类颜色所以需要定义一个更亮的绿色,但不知道从哪里去。
答案 0 :(得分:0)
您可以从此处自定义config.json http://getbootstrap.com/customize/
或者您可以从bootstrap Less Source或SASS Source中专门手动更改所需的内容。你可以从这里得到那些
答案 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*/}