CSS div 浮动 - 从上到下、从左到右
我怎样才能从上到下、从左到右放置div
示例: http: //jsfiddle.net/ZWxGW/2/
http://jsfiddle.net/ZWxGW/2/
解决方案 http://jsfiddle.net/pMbtk/33/
how can i put the div's from top to buttom and left to right
example: http://jsfiddle.net/ZWxGW/2/
SOLUTION
http://jsfiddle.net/pMbtk/33/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以将
column-count
属性用于此类函数:查看我之前对此问题的回答
我想将列表项显示为 2 列或更多列(动态对齐)
You can use the
column-count
property for this type of function:Check my previous answers for this
I want to show list items as 2 or more columns (dynamic alignment)
如果从左到右、从上到下适合您,请尝试此操作。
Try this if left to right and top to bottom works out for you.
1) 在这种情况下,您必须采用列 div(图像中的红色),并且必须将其他 div 1,2,3,4 放入此 div 中...如图所示
为 div 提供以下属性。
2) 在另一种情况下,
如果你想要从左到右,从上到下,那么你不需要外部 div...以红色指定
1) In this case you have to take column div(s) (red colored in image) and you have to put other divs 1,2,3,4 inside this div... as in image
give below properties to div.
2) in another case,
if you want from left to right,top to bottom, then you don't need to have a outer div...specified in red color
你可以尝试这个...
在 IE http://jsfiddle.net/rlemon/Y5ZvA/3/ 中未经测试
you can try this...
untested in IE http://jsfiddle.net/rlemon/Y5ZvA/3/
删除 contentDiv 的高度并放置
float:left;
以便它包裹您的内容。http://jsfiddle.net/ZWxGW/5/
Remove height from contentDiv and put
float:left;
so that it wraps your content.http://jsfiddle.net/ZWxGW/5/
我在你的例子中尝试过这个:
它有帮助。
祝你好运 !
I tried this in your example:
and it helps.
Good-Luck !