我希望我的网页能够快速响应,我知道可以使用bootstrap完成,但事情是我在哪里将它包含在我的.css文件中,我想知道当我使用bootstrap时是否可以包含我自己的定位或不应该吗?
答案 0 :(得分:1)
您将其包含在<head>
部分中。见例子。
如果您有任何自定义CSS,请将其包含在bootstrap.min.css
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="custom_style.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Place content here -->
</body>
</html>