ASP.NET Web窗体项目。使用GridView并使用Bootstrap CSS Class“table table-striped”。我想为表头创建一类颜色。例如:
.MyHeader {
color: black;
background-color: white;
}
我想将网格视图的CSS类设置为: “table table-striped MyHeader”
如果我使用GridView标题样式,则应用颜色规则,但Bootstrap.css会覆盖背景颜色。以下是Bootstrap.css如何设置背景颜色:
.table-striped tbody > tr:nth-child(2n+1) > td, .table-striped tbody > tr:nth-child(2n+1) > th {
background-color: rgb(249, 249, 249);
}
我该怎么做?
答案 0 :(得分:0)
使用Firebug。右键单击表格选择COPY CSS PATH,如:
我认为您可以在css中使用复制路径。