我是新手使用Bootstrap,并尝试了一些基本的功能,但似乎没有渲染。我试图创建一个越来越暗的背景和文本渲染文本,但它这样做没有黑色背景。不会
<title>Bootstrap Layouts</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap- theme.min.css">
</head>
<body>
<div class="container">
<div class="row">
<h1>Hello World</h1>
<div class="darkBG clm-sm-6">Test</div>
<div class="darkerBG clm-sm-6">Test</div>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="http://code.jquery.com/jquery-1.11.0.min.js">
</script>
<script src="js/bootstrap.js"></script>enter code here发布于 2016-05-18 04:24:47
应将<div class="darkBG clm-sm-6>更改为<div class="darkBG col-sm-6>
https://stackoverflow.com/questions/23789880
复制相似问题