垂直对齐中间不适用于表格单元格

发布于 2024-12-12 22:30:17 字数 180 浏览 1 评论 0原文

请检查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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陪你到最终 2024-12-19 22:30:17

具有 display:table-cell 的元素会忽略 min-widthmin-height。您必须使用高度宽度
另外,如果您想使用 position:absolute 定位元素,则可以将该元素包装在容器中,并将 position:absolute 分配给该容器。

请参阅此小提琴: http://jsfiddle.net/4Ly4B/3/

An element with display:table-cell ignores min-width and min-height. You have to use height and width instead.
Also, if you want to position the element using position:absolute, you wrap the element in a container, and assign position:absolute to this container.

See this fiddle: http://jsfiddle.net/4Ly4B/3/

简单爱 2024-12-19 22:30:17

垂直对齐:居中;它基本上用于表格单元格。在您的示例中,位置是绝对的
这样你就可以做到这一点

.message{
background-color: gray;
position: absolute;
min-width: 200px;
display: table-cell;
padding:60px 0px 60px 0px;
text-align: center;

}

vertical-align: middle; it's basicall used for table-cell.in your example position is absolute
this way u can do this

.message{
background-color: gray;
position: absolute;
min-width: 200px;
display: table-cell;
padding:60px 0px 60px 0px;
text-align: center;

}

笛声青案梦长安 2024-12-19 22:30:17

属性vertical-align不能与min-height一起使用。删除 min-height 并添加 padding 来代替它。

.message{
    background-color: gray;
    position: absolute;
    padding-top: 40px;
    padding-bottom: 40px;
    min-width: 200px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

The property vertical-align doesn't work with min-height. Remove min-height and add padding instead of it.

.message{
    background-color: gray;
    position: absolute;
    padding-top: 40px;
    padding-bottom: 40px;
    min-width: 200px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文