bootstrap做列表展示如何给title添加颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrap做列表展示如何给title添加颜色相关的知识,希望对你有一定的参考价值。
bootstrap做列表展示如何给title添加颜色,如下图标红的地方是默认的,这么设置成黑色,不是隔行换色。不是隔行换色。不是隔行换色
参考技术A $('#myTab a').slice(0, 2).click(function()$(this).closest('li').addClass('active').siblings().removeClass('active');
$('#myTab li').slice(2, 4).hide().eq($(this).closest('li').index()).show();
) 参考技术B $(this).closest('li').addClass('active').siblings().removeClass('active'); 参考技术C
建议给<table>添加一个定义的className,然后进行定义样式。其实不是很明白的title是指哪个,我姑且把他当成是你红框圈起来的<th>
<table class="table table-bordered table-polling"><thead>
<tr>
<th class="customClass">项目名称</th>
<th>巡检员名称</th>
</tr>
</thead>
<tbody>
...
</tbody>
</table>
/* 方法1,给table th固定样式 */
.table-polling th
/*颜色代码*/
/* 方法2 */
.customClass
/*颜色代码*/
以上是关于bootstrap做列表展示如何给title添加颜色的主要内容,如果未能解决你的问题,请参考以下文章
如何在:title nav-tab bootstrap vue.js 上添加图标 fontawesome?