gpt4 book ai didi

html - 为什么 td 文本颜色没有改变

转载 作者:太空宇宙 更新时间:2023-11-03 23:00:23 24 4
gpt4 key购买 nike

我有一个带表格的 View ,我正在尝试将 td 中的每个文本设置为特定颜色。我正在使用 Bootstrap,但我没有看到我在 Site.css 中所做的更改反射(reflect)在 View 中。

查看 (html)

<div class="row">
<div class="col-lg-12">
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new {id = "frmNumber", @class = "form-group"}))
{
<button class="btn btn-lg btn-success" id="btnGetNumbers" title="Get Numbers"></button>
<div class="row">
<div class="col-lg-12">
<table class="table table-striped">
<thead>
<tr>
<th>1st Number</th>
<th>2nd Number</th>
<th>3rd Number</th>
<th>4th Numer</th>
<th>5th Number</th>
</tr>
</thead>
<tbody>
<tr>
@if (null != Model)
{
<td class="firstNumber">@Model.Numbers[0]</td>
<td class="secondNumber">@Model.Numbers[1]</td>
<td class="thirdNumber">@Model.Numbers[2]</td>
<td class="fourthNumber">@Model.Numbers[3]</td>
<td class="fifthNumber">@Model.Numbers[4]</td>
}
</tr>
</tbody>
</table>
</div>
</div>
}
</div>
</div>

CSS

body {
padding-top: 50px;
padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}

.firstNumber {
color: red;
}

.secondNumber {
color: blue;
}

.thirdNumber {
color: green;
}

.fourthNumber {
color: orange;
}

.fifthNumber {
color: purple;
}

最佳答案

我不能从这里确定,但我认为您忽略了一个事实,即您需要在 Bootstrap 的 CSS 之后加载您的 CSS。

关于html - 为什么 td 文本颜色没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36731994/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com