Reputation: 37
What is different between bootstrap.css and bootstrap-responsive.css? I got confused which one to use to make responsive websites?
Upvotes: 0
Views: 1549
Reputation: 11228
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) { ... }
Upvotes: 2