What is different between bootstrap.css and bootstrap-responsive.css? I got confused which one to use to make responsive websites?
Asked
Active
Viewed 1,534 times
0
-
2possible duplicate of [Should I include bootstrap.css and bootstrap-responsive.css together?](http://stackoverflow.com/questions/11455222/should-i-include-bootstrap-css-and-bootstrap-responsive-css-together) – karthikr Sep 25 '13 at 19:02
1 Answers
2
You need both and the responsive css has the rules for the responsive stuff. Like the layout for different view port sizes:
@media (min-width: 768px) and (max-width: 979px) { ... }
@media (max-width: 767px) { ... }
@media (min-width: 1200px) { ... }

allcaps
- 10,945
- 1
- 33
- 54