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.
我正在尝试实现这样的布局:http ://www.ipadinsight.com/wp-content/uploads/2010/07/LakersWin.jpg是一个多页多列布局,适用于正文. 有任何想法吗?我认为 CSS 可以处理多布局问题,但不能处理分页。任何帮助将不胜感激。谢谢你。
您可以通过使用像 webkit-column-count 之类的 css 属性来实现这一点,下面的 css 示例。
div { -moz-column-count:3; /* Firefox */ -webkit-column-count:3; /* Safari and Chrome */ column-count:3; }
演示在这里http://jsfiddle.net/Bqjcc/
网格系统怎么样?
我更喜欢 1140 css 网格:http ://cssgrid.net/
960格也很流行:http: //960.gs/