指定一个 css div 容器,以便超过其高度的元素继续在其下一个“列”中;
如何指定 css div 容器,以便它强制执行类似于列的行为,这样当容器的高度超过其第一个“列”中的元素时,这些元素只是继续在容器的下一个“列”中。我的目标不是指定列,而是指定 i)容器高度和 ii)元素填充“列”所需的任何属性。
谢谢,
里尔
How do I specify a css div container so that it enforces column-like behavior, such that when the height of the container is exceeded by the elements in its first 'column', the elements simply continue in the next 'column' of the container. My goal is not to specify columns but just the i) the container height and ii) whatever properties the elements need to have to fill up the 'columns'.
Thanks,
Lille
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与指定任何 div 的方式相同,您可以为其指定
class
或id
。至于您使用 div 来强制执行“类似列”行为的意图,您仅限于 CSS 列的有限实现:
如果您指定
-vendor-column-count: 3
并省略-vendor-column-width
浏览器将实现 3 列,其宽度由渲染引擎自动计算,反之,如果您指定-vendor-column-width: 10em
如果不指定 -vendor-column-count ,浏览器将计算要显示的适当列数。显然,这些 CSS3 属性仅由 Chrome/Safari (
-webkit
) 和 Firefox (-moz
) 实现。对于跨浏览器支持,您需要使用 JavaScript 解决方案(或使用服务器端技术): List Apart 有一个 引用 JS 实现的文章。
In the same way that you specify any div, you can give it either a
class
or anid
.As regards your intent to use the div to enforce 'column-like' behaviour, you're limited to either a limited implementation of CSS columns:
If you specify
-vendor-column-count: 3
and omit the-vendor-column-width
the browser will implement 3 columns with the width automatically calculated by the rendering engine, conversely if you specify the-vendor-column-width: 10em
without specifying the-vendor-column-count
the browser will calculate the appropriate number of columns to display.Clearly these CSS3 properties are implemented by only Chrome/Safari (
-webkit
) and Firefox (-moz
).For cross-browser support you would need to use a JavaScript solution (or use a server-side technology): A List Apart has an article that references a JS implementation.