如果表格边框的右侧不可见,应该在哪里调查?

发布于 2024-12-12 06:12:28 字数 48 浏览 0 评论 0原文

如果 div 中的表格元素的边框右侧不可见,您能否告诉我要调查什么或首先查看哪里?

Can you give me a tip on what to investigate or where to look at first if a table element in a div has its border's right side is not visible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月朦胧 2024-12-19 06:12:29

打开浏览器调试器(firebug、opera Dragonfly...)并右键单击 TD,执行“检查元素”。检查(计算的)样式。

Open your browser debugger (firebug, opera dragonfly, ...) and rightclick the TD, do 'inspect element'. Check the (computed) style.

你的背包 2024-12-19 06:12:29

我的第一个测试是在几个不同的网络浏览器和/或这些浏览器的版本中进行测试。

My first test would be to test in several different web browsers and/or versions of those.

静水深流 2024-12-19 06:12:29

如果将

设置为 overflow:hidden; 将表格设置为 width:100%;,则边框将会消失

尝试添加:

-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;

...到表元素。

The border will disappear if the <div> is set to overflow:hidden; your table is set to width:100%;

Try adding:

-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;

...to the table element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文