我将跟着'thenewboston'https://youtu.be/c5xVxSFoyQw?list=PL6gx4Cwl9DGBPw1sFodruZUPheWVKchlM
的视频一起观看我的代码响应的速度与视频中的不同,我也不知道为什么。我正在浏览thenewboston引导播放列表,而且我不相信自己会停留在第二个视频上。
如果您想继续帮助我,或者在我处理此播放列表时只是关注我,这里是指向我在GitHub https://github.com/Osyris93/BootstrapProject中的代码的链接。
<!DOCTYPE html>
<html lang="en">
<head>
<title>The bootstrap project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"> </script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"> </script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"> </script>
</head>
<body>
<div class="container-fluid>
<h1>3 column layout</h1>
<div class="row">
<div class="col-md-4" style="background-color: #FF9999">Left</div>
<div class="col-md-4" style="background-color: #99CCFF">Middle</div>
<div class="col-md-4" style="background-color: #00CC99">Right</div>
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
欢迎堆栈溢出!您看到的问题是由于容器类后缺少结尾引号。要解决,只需切换一下即可:
<div class="container-fluid>
对此:
<div class="container-fluid">
错别字是开发中的常见部分,我一直发现使用带有上下文高亮显示的工具可以节省一个小时丢失的字符的时间。