Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bootstrap.css 和 bootstrap-responsive.css 有什么不同?我很困惑使用哪一个来制作响应式网站?
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) { ... }