CSS Div:将 div 中的所有内容对齐到底部
我正在尝试构建此图表...这就是问题
看看这个。我希望这些 div“#green”与底部对齐
i am trying to bulid this graph... heres the problem
TAKE A LOOK AT THIS.. i want these divs "#green" to be aligned to the bottom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是怎么回事?
我将您的
float: left
更改为display: inline-block
,默认情况下有一个vertical-align:我相信基线。
查看如何为 IE6 和 IE7 执行此操作。
另外,作为旁注,您应该为一个元素分配一个
id
属性。否则使用类。How is this?
I changed your
float: left
todisplay: inline-block
which by default has avertical-align: baseline
I believe.Check out how to do one for IE6 and IE7.
Also, as a sidenote, you should assign one
id
attribute to one element. Use a class otherwise.在这里: http://jsfiddle.net/SebastianPataneMasuelli/uYghh/16/
更改
left
值来移动它们。编辑:更新了正确边距的示例。
here you go: http://jsfiddle.net/SebastianPataneMasuelli/uYghh/16/
change the
left
value to move them around.edit: updated sample for correct margins.
请将绿色 div 的 id 属性更改为彼此不同的东西
http://jsfiddle.net/uYghh/33/
please change the id property of the green divs to some thing different to each other
http://jsfiddle.net/uYghh/33/
删除
float:left;
使用display:inline-block;
Remove
float:left;
usedisplay:inline-block;
通过这个改变你的CSS
Change your css by this