jquery – 使用bootstrap更改表头颜色

前端之家收集整理的这篇文章主要介绍了jquery – 使用bootstrap更改表头颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个使用bootstrap的MVC5应用程序.表列名称为黑色
在白色背景上,我想将其更改为蓝色背景和列
名字是白色的,我怎么能这样做?
我尝试使用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;
}
原文链接:https://www.f2er.com/jquery/178225.html

猜你在找的jQuery相关文章