Should I include two css file or one is enough?
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" media="all" />
<link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css" media="all" />
OR
<link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css" media="all" />
You can use the official Twitter Bootstrap download helper in order to have one CSS file named
bootstrap.css
(resp.bootstrap.min.css
) which will contain the following CSS parts:Both of the files should be included as of Bootstrap 2.
But with Bootstrap 3 only one css file will be included.
Source: https://github.com/twitter/bootstrap/pull/6342
Edit: If you want to include bootstrap 3 css you can use this CDN version:
Bootstrap 2
You should include both, the first one defines all the styles for html elements whilst the second one adds responsiveness to the layout.
Bootstrap 3
Only one css file will be included.
Happy coding!