HTML表格边框不在asp.net中?

时间:2012-12-13 10:19:58

标签: html

我有一张这样的桌子:

<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工具包......任何人都可以告诉我这是什么问题吗?

3 个答案:

答案 0 :(得分:2)

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

border: Solid 1px Black

答案 1 :(得分: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>

答案 2 :(得分:0)

尝试使用正确的 CSS border style 语法。

<table width="100%" bgcolor="Wheat" style="border:1px solid Black">