CSS 浮动和 div 块位置
我遇到这个问题然后我尝试将 div 向左浮动, 每个块包含相同的 div 类(成员)。
如果位于右侧,则块会上升,但在左侧则不起作用。
有什么想法吗?
.member {
float: left;
position: relative;
width: 422px;
margin: 0px 10px 10px 0px;
height: auto;
}
I have this problem then I try to float div left,
each block contains same div class (member).
Block goes up if it is on the right hand side, but doesnt work on left.
Any thoughts?
.member {
float: left;
position: relative;
width: 422px;
margin: 0px 10px 10px 0px;
height: auto;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你想要两列不同高度的块。
然后你应该一列向左浮动,第二列向右浮动:
像这样:
HTML:
I suppose you want two columns with blocks of different height.
Then you should one column float to left and the second to the right:
Like this:
HTML: