把 align-items: center 设置到单元格上,而不是行单元格 { display: flex; align-items: center; }demo.html<div class="table"> <div> <div>第一列</div> <div>第二列</div> <div>第三列</div> </div> <div> <div>第一列</div> <div>第二列、第二列、第二列、第二列</div> <div>第三列</div> </div> <div> <div>第一列</div> <div>第二列、第二列、第二列、第二列</div> <div>第三列</div> </div> </div>demo.css.table, .table > *, .table > * > * { border: 1px #ccc; } .table { width: 300px; border-left-style: solid; border-top-style: solid; } .table > * { display: flex; border-bottom-style: solid; } .table > * > * { flex: 1; width: 0; overflow-wrap: anywhere; display: flex; align-items: center; border-right-style: solid; padding: 0.5em; } .table > :first-child > *, .table > * > :first-child { background: #eee; justify-content: center; font-weight: bold; }
把
align-items: center
设置到单元格上,而不是行demo.html
demo.css