我正在使用bootstrap开始一个psd到html的对话但我的英雄单位没有得到它的默认样式
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.7/cerulean/bootstrap.css" >
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<div class="hero-unit">
<h1>We build well desgined websites</h1>
<p>Class aptent taciti sociosqu ad litora torquent per conubia nostra.</p>
<p>
<a class="btn btn-primary btn-large">
Get Started
</a>
<a class="btn btn-primary btn-large">
Learn More
</a>
</p>
</div>
</body>
</html>
你会在图片中看到它的图像风格还可以,但是英雄单位没有任何人知道为什么?。
答案 0 :(得分:0)
如果你是uisng twitter bootstrap 3你应该使用jumbotron而不是hero-unit
<div class="jumbotron">
答案 1 :(得分:0)
也许您正在引用此CSS:https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css
如果你想使用hero-unit类,它是bootstrap v2,那么这个样式表。
如果您使用bootstrap 3,我建议使用jumbotron作为scaisEdge注意到。
如果这不能解答您的问题,您可能需要创建自己的CSS,以便按照自己的方式设置样式。