0

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

这是照片 这是 Grid 标头的标记。

<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>
4

2 回答 2

0

正如 Blachshma 所说,您只能使用一个表格来修复所有浏览器的列宽相同......而且我认为,使表格/网格可滚动是一项简单的任务......

尝试这个..

<div style="max-width:500px;overflow:auto;">

    // Here, HTML code for Table or Gridview

</div>

希望,它可以帮助你。!!谢谢。

于 2013-01-15T11:36:56.453 回答
0

而不是创建 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>
于 2013-01-08T12:00:16.020 回答