2

我有一张这样的桌子:

<table width="100%" bgcolor="Wheat" style="border:Solid 1 Black">
                                                <tr>
                                                    <th>
                                                        VendorCode
                                                    </th>
                                                    <th>
                                                        VendorName
                                                    </th>
                                                    <th>
                                                        Password
                                                    </th>
                                                    <th>
                                                        Email
                                                    </th>
                                                    <th>
                                                        Phone
                                                    </th>
                                                </tr>

                                            </table>

问题是我没有得到表格边框......我也在使用 updatepanel 和 ajax 工具包......任何人都可以告诉我这是什么问题吗?

4

3 回答 3

2

您需要指定边界声明的宽度部分的单位,我认为是px(而不是em例如)。样式声明应该是:

border: Solid 1px Black

于 2012-12-13T10:21:58.763 回答
1

感谢您的所有帮助人员,但由于某种原因它们不起作用,但这对我有用:

<table width="100%" bgcolor="Wheat" style="border-style:solid; border-width:thin; border-color: Black">
                                                <tr>
                                                    <th style="border-style:solid; border-width:thin; border-color: Black">
                                                        VendorCode
                                                    </th>
                                                    <th style="border-style:solid; border-width:thin; border-color: Black">
                                                        VendorName
                                                    </th>
                                                    <th style="border-style:solid; border-width:thin; border-color: Black">
                                                        Password
                                                    </th>
                                                    <th style="border-style:solid; border-width:thin; border-color: Black">
                                                        Email
                                                    </th>
                                                    <th style="border-style:solid; border-width:thin; border-color: Black">
                                                        Phone
                                                    </th>
                                                </tr>

                                            </table>
于 2012-12-13T10:51:50.937 回答
0

尝试使用正确的CSS 边框样式语法。

<table width="100%" bgcolor="Wheat" style="border:1px solid Black">
于 2012-12-13T10:22:01.610 回答