twitter-bootstrap-3面板不在ASP.NET中显示

时间:2016-12-01 19:57:35

标签: asp.net twitter-bootstrap

我开始在ASP.NET 4.0中使用Bootstrap。

我已将bootstrap导入到我的项目中,并添加了示例代码中显示的jQuery脚本行。

以下是我要添加的Panel的代码:

<div class="panel panel-primary">
    <div class="panel-heading">
        <h3 class="panel-title">Customer ID</h3>
    </div>
    <div class="panel-body">
        Customer Id Input
    </div>
</div>

显示文本,但不显示为Bootstrap Panel。

感谢您的任何建议。

1 个答案:

答案 0 :(得分:0)

它应该工作。你可能有其他CSS的问题或缺少bootstrap css。 你可能有一些其他的CSS代码覆盖bootstrap css。

要确认对您的面板元素执行检查元素,并查看该元素正在使用的类!

&#13;
&#13;
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="panel panel-primary">
    <div class="panel-heading">
        <h3 class="panel-title">Customer ID</h3>
    </div>
    <div class="panel-body">
        Customer Id Input
    </div>
</div>
&#13;
&#13;
&#13;

您的html格式看起来有些问题: