0

bootstrap.css 和 bootstrap-responsive.css 有什么不同?我很困惑使用哪一个来制作响应式网站?

4

1 回答 1

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) { ... }
于 2013-09-25T19:13:11.650 回答