Html ASP.NET Mvc引导表CSS标题行行为

Html ASP.NET Mvc引导表CSS标题行行为,html,twitter-bootstrap,css,Html,Twitter Bootstrap,Css,我已经更改了thead内容的类,给它一个边框,使它可以立即看到问题所在,但这对所有类和任何类都会发生。我没有自己的css应用在任何地方,我希望让bootstrap为我处理大部分的工作 具体地说,我正试图找到第一个这么长的原因 <table id="selectedIngredientsTable" class="table-responsive"> <thead class="thead-inverse">

我已经更改了thead内容的类,给它一个边框,使它可以立即看到问题所在,但这对所有类和任何类都会发生。我没有自己的css应用在任何地方,我希望让bootstrap为我处理大部分的工作

具体地说,我正试图找到第一个
这么长的原因

 <table id="selectedIngredientsTable" class="table-responsive">
                <thead class="thead-inverse">
                    <tr>
                        <th>@Html.Label("Ingredient", htmlAttributes: new { @class = "control-label col-md-2" })</th>
                        <th>@Html.Label("Amount", htmlAttributes: new { @class = "control-label col-md-2" })</th>
                        <th>@Html.Label("Measurement Unit", htmlAttributes: new { @class = "control-label col-md-2" })</th>
                    </tr>
                </thead>

@Label(“配料”,htmlAttributes:new{@class=“control Label col-md-2”})
@Label(“Amount”,htmlAttributes:new{@class=“control Label col-md-2”})
@Label(“测量单位”,htmlAttributes:new{@class=“control Label col-md-2”})
然而,我对Bootstrap还不太熟悉,我只是想知道是否有人知道是什么导致了这种奇怪的行为

我已经和检查员核实过了,在那里似乎也找不到任何东西

编辑:以下是生成的HTML:


在View source中,获取表格的HTML并将其放在这里。@Thangaraja-作为文本或屏幕截图?任何内容都应good@Thangaraja-现在添加html