gpt4 book ai didi

asp.net - 不同浏览器中的可滚动 GridView

转载 作者:行者123 更新时间:2023-11-28 13:25:36 25 4
gpt4 key购买 nike

我创建了一个可滚动的 GridView 。所以我创建了一个表格,它是网格标题的副本。我用像素给每个宽度属性。但它在不同的浏览器中工作不同。任何帮助表示赞赏。

Here is the photo这是网格标题的标记。

<table  cellpadding="0" cellspacing="0">
<tr>
<th width="26px">
</th>
<th width="152px">
Sosial sığorta nömrəsi
</th>
<th width="122px">
Soyadı
</th>
<th width="121px">
Adı
</th>
<th width="120px">
Atasının adı
</th>
<th width="50px">
Cinsi
</th>
<th width="100px">
Doğum tarixi
</th>
<th width="122px">
Uçota düşmə tarixi
</th>
<th width="102px">
SUN (köhnə)
</th>
<th width="150px">
Sığorta edənin VÖEN-i
</th>
<th width="102px">
SUN
</th>
<th width="102px">
Ölüm tarixi
</th>
</tr>
</table>

最佳答案

无需创建 2 个表,一个用于标题,另一个用于数据 - 只需创建一个表...

像这样应该让所有列的宽度都正确:

<table  cellpadding="0" cellspacing="0">
<tr>
<th width="26px">
</th>
<th width="152px">
Sosial sığorta nömrəsi
</th>
.....
<th width="102px">
Ölüm tarixi
</th>
</tr>
<tr> <!-- Enter data here -->
</tr>
<tr> <!-- Enter data here -->
</tr>
</table>

关于asp.net - 不同浏览器中的可滚动 GridView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14214375/

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