我有一个使用bootstrap的MVC5应用程序.表列名称为黑色
在白色背景上,我想将其更改为蓝色背景和列
名字是白色的,我怎么能这样做?
我尝试使用CSS类没有成功…
在白色背景上,我想将其更改为蓝色背景和列
名字是白色的,我怎么能这样做?
我尝试使用CSS类没有成功…
<input type="button" value="Add" onclick="addRow()" class="data-button" id="add-row" /> <table class="table" > <tr> <th> @Html.DisplayNameFor(model => model.name) </th> <th> @Html.DisplayNameFor(model => model.checkBox1) </th> <th></th> </tr>
解决方法
在你的CSS中
th { background-color: blue; color: white; }