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.
我有一些狭窄的内容,我想为大型桌面(> = 1200px)占用 3 列,但默认只有 2 列(980px-1199px)?
Twitter Bootstrap 可以做到这一点吗?宁愿不使用javascript...
我最终手动编写了浮动的 css 规则,即:
li { width: 33%; float:left; } @media (max-width: 1200px) { width:50%; }