首页 > 解决方案 > 表格中浮动选择旁边的垂直对齐范围

问题描述

How to vertical align middle text in first column when select is float:right next to the text in span. 此元素必须在 div 中。我可以使用 line-height 但当文本较长时它不存在。

JSFIDDLE

照片示例

标签: cssvertical-alignment

解决方案


将这些 css 规则添加到您的 css 代码中

td > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

推荐阅读