垂直对齐中间不适用于表格单元格
请检查http://jsfiddle.net/4Ly4B/ 我已经vertical-align: middle< /code> 位于未到达中间的
table-cell
上
Please Check http://jsfiddle.net/4Ly4B/ I've vertical-align: middle
on a table-cell
which is not coming to the middle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
具有
display:table-cell
的元素会忽略min-width
和min-height
。您必须使用高度
和宽度
。另外,如果您想使用
position:absolute
定位元素,则可以将该元素包装在容器中,并将position:absolute
分配给该容器。请参阅此小提琴: http://jsfiddle.net/4Ly4B/3/
An element with
display:table-cell
ignoresmin-width
andmin-height
. You have to useheight
andwidth
instead.Also, if you want to position the element using
position:absolute
, you wrap the element in a container, and assignposition:absolute
to this container.See this fiddle: http://jsfiddle.net/4Ly4B/3/
垂直对齐:居中;它基本上用于表格单元格。在您的示例中,位置是绝对的
这样你就可以做到这一点
}
vertical-align: middle; it's basicall used for table-cell.in your example position is absolute
this way u can do this
}
属性vertical-align不能与min-height一起使用。删除 min-height 并添加 padding 来代替它。
The property vertical-align doesn't work with min-height. Remove min-height and add padding instead of it.