table 中浮动 select 旁边的垂直对齐范围
Vertical align span next to the float select in table
当 select 是 float:right 时,如何在第一列中垂直对齐中间文本在 span 中的文本旁边。此元素必须在 div 中。我可以使用行高,但当文本较长时它不存在。
Photo example
将这些 css 规则添加到您的 css 代码中
td > div {
display: flex;
align-items: center;
justify-content: space-between;
}
当 select 是 float:right 时,如何在第一列中垂直对齐中间文本在 span 中的文本旁边。此元素必须在 div 中。我可以使用行高,但当文本较长时它不存在。
Photo example
将这些 css 规则添加到您的 css 代码中
td > div {
display: flex;
align-items: center;
justify-content: space-between;
}