gpt4 book ai didi

html - 高度为 : auto? 时 'sticky' 列的垂直对齐方式

转载 作者:行者123 更新时间:2023-12-04 21:01:48 24 4
gpt4 key购买 nike

我试图在其垂直轴上居中一个粘性列。
该列固定在表格的右侧

JSFiddle to illustrate my issue

以及说明它的屏幕截图:

Example

您可以看到,对于粘性 td(浅蓝色)肯塔基州和堪萨斯州,它们没有填满行的整个高度。 (并且设置 height:100% 不起作用)。

问题是,在我的要求中,非粘性 td 的高度必须自动设置,并且开发必须与 兼容。 IE11 .

如何将整个 tr 的粘性 td 垂直居中?

HTML代码:

<div class="zui-wrapper">
<div class="zui-scroller">
<table class="zui-table">
<thead>
<tr>
<th>Name</th>
<th>Number</th>
<th>Position</th>
<th>Height</th>
<th>Born</th>
<th>Salary</th>
<th>Salary</th>
<th>Salary</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>DeMarcus Cousins</td>
<td>15</td>
<td>C</td>
<td>6'11"</td>
<td>08-13-1990</td>
<td>$4,917,000</td>
<td>$4,917,000</td>
<td>$4,917,000
$4,917,000<br>
$4,917,000<br>
$4,917,000</td>
<td class="zui-sticky-col">Kentucky/USA</td>
</tr>
<tr>
<td>Isaiah Thomas</td>
<td>22</td>
<td>PG</td>
<td>5'9"</td>
<td>02-07-1989</td>
<td>$473,604</td>
<td>$473,604</td>
<td>$473,604</td>
<td class="zui-sticky-col">Washington/USA</td>
</tr>
<tr>
<td>Ben McLemore</td>
<td>16</td>
<td>SG</td>
<td>6'5"</td>
<td>02-11-1993</td>
<td>$2,895,960</td>
<td>$2,895,960</td>
<td>$2,895,960</td>
<td class="zui-sticky-col">Kansas/USA</td>
</tr>
<tr>
<td>Marcus Thornton</td>
<td>23</td>
<td>SG</td>
<td>6'4"</td>
<td>05-05-1987</td>
<td>$7,000,000</td>
<td>$7,000,000</td>
<td>$7,000,000</td>
<td class="zui-sticky-col">Louisiana State/USA</td>
</tr>
<tr>
<td>Jason Thompson</td>
<td>34</td>
<td>PF</td>
<td>6'11"</td>
<td>06-21-1986</td>
<td>$3,001,000</td>
<td>$3,001,000</td>
<td>$3,001,000</td>
<td class="zui-sticky-col">Rider/USA</td>
</tr>
</tbody>
</table>
</div>
</div>

以及它的 CSS:

.zui-table {
border: none;
border-right: solid 1px #DDEFEF;
border-collapse: separate;
border-spacing: 0;
font: normal 13px Arial, sans-serif;
}
.zui-table thead th {
background-color: #DDEFEF;
border: none;
color: #336B6B;
padding: 10px;
text-align: left;
text-shadow: 1px 1px 1px #fff;
white-space: nowrap;
}
.zui-table tbody td {
height: auto;
border-bottom: solid 1px #DDEFEF;
color: #333;
padding: 10px;
text-shadow: 1px 1px 1px #fff;
white-space: nowrap;
}
.zui-table tbody tr {
background-color: lightgrey;
}
.zui-wrapper {
position: relative;
}
.zui-scroller {
margin-right: 141px;
overflow-x: scroll;
overflow-y: visible;
padding-bottom: 5px;
}
.zui-table .zui-sticky-col {
border-left: solid 1px #DDEFEF;
border-right: solid 1px #DDEFEF;
right: 0;
position: absolute;
top: auto;
width: 120px;
display: flex;
flex: 1;
align-items:center;
justify-content:center;
}

最佳答案

使用位置:粘性而不是position:absolute。
Transform: translate3d(0,0,0) 用于在 iOS 设备上提供更好的支持。
示例:https://codepen.io/pratikmalvi/pen/gOOpzzK

.zui-table .zui-sticky-col {
background-color: lightblue;
height: auto;
border-left: solid 1px #DDEFEF;
border-right: solid 1px #DDEFEF;
right: 0;
width: 120px;
position: sticky;
right: 0;
top: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}

关于html - 高度为 : auto? 时 'sticky' 列的垂直对齐方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58305580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com