社稷师
2016-03-03 16:01
在不更改基本样式表的基础上怎么快速更改斑马线背景颜色呢?
我觉得bootstrap也只是算是被美化了的一个默认样式吧,你可以为表格设个id 或者class另外自己来设置想要样式就不会影响其他的表格了吧
:host /deep/.table-striped > tbody > tr:nth-of-type(odd){
background:#f9fcfe;
}
a.css这样覆盖就可以了
自己再新建一个CSS文件如a.css 然后把bootstrap斑马线的这段语句
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
复制进去a.css, 然后改类名 你想要的颜色,如
.table-striped-red > tbody > tr:nth-of-type(odd) {
background-color: red;
}
最后<tabel> 增加class→ <table calss="table table-striped-red">就好了。。但是 这个方法 hover效果好像就失效了
css文件里面有个color 改变里面的例如#333 这种数值什么的
玩转Bootstrap(基础)
314544 学习 · 2275 问题
相似问题