我正在尝试在我的页面中创建Hero Unit
,我使用了以下代码,但它没有显示英雄单位。请指导我在这里缺少的东西。
我已加入bootstrap.min.css
和bootstrap-theme.min.css
。
<div class="hero-unit">
<div class="col-xs-8 col-xs-offset-4">
<h1>Skills Management System</h1>
<P>
Find the Best Skills for any of your Project</P>
</div>
</div>
答案 0 :(得分:5)
它已被Bootstrap 3中的jumbotron
取代。另外,请确保将col..
放在row
..
<div class="jumbotron">
<div class="row">
<div class="col-xs-8 col-xs-offset-4">
<h1>Skills Management System</h1>
<p>
Find the Best Skills for any of your Project</p>
</div>
</div>
</div>
答案 1 :(得分:2)
请验证您的引导版本。 在bootstrap 3.0中,英雄单位被“jumbotron”取代
答案 2 :(得分:1)
我注意到您输入了bootstrap-theme.min.css
,所以我认为您使用的是Bootstrap 3
。
但是您的代码显示您使用的是Bootstrap 2
样式。
所以,只需改变班级&#39;英雄单位&#39;到了&#39; jumbotron&#39;在Boostrap 3
中已更改:
<div class="jumbotron">
<h1>Skills Management System</h1>
<P>
Find the Best Skills for any of your Project</P>
</div>