我要做的就是让一些文本在屏幕中间开始。
这是下面的代码。请注意,我在项目目录中包含了缩小的引导 css 和 js 文件以及没有子目录的 html 文件。我从预编译的 Bootstrap 3.0.1 下载中获得了这些文件。我也尝试使用 CDN 的链接。仍然没有工作。当我在 Firefox 中打开此代码时,我根本看不到任何定位活动。其他 Bootstrap 样式也不起作用,就像我尝试做的那样<p class = "large"> blah </p>
,它并没有使文本变大。
注意:为了让人们更容易测试页面,我将本地引导文件的链接替换为引导 CDN 文件的链接。
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap-theme.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="row">
<div class="span3 offset9">
<p class="large">This Text</p>
</div>
</div>
<h1>Hello, world!</h1>
</body>
</html>