当使用自定义css和Twitter Bootstrap覆盖某些样式时,最好在引导响应css之前或之后放置自定义css链接吗?
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<!-- Your custom css -->
<link rel="stylesheet" href="css/style.css">
Run Code Online (Sandbox Code Playgroud)
要么
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Your custom css -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
Run Code Online (Sandbox Code Playgroud)
各自的优点和缺点是什么?
如果我在bootstrap-responsive.css之后编辑主体填充,如下所示:
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
/* Add padding for navbar-top-fixed */
body {
padding-top: 60px;
padding-bottom: 40px;
}
Run Code Online (Sandbox Code Playgroud)
然后我还必须使用媒体查询来修复响应式布局,因为我已经覆盖了全局体型.
/* Fix to remove top padding for narrow viewports */
@media (max-width: 979px) {
body {
padding-top: 0;
}
}
Run Code Online (Sandbox Code Playgroud)