Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/35.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 表格边框随机显示,边框为:0_Html_Css_Google Chrome_Html Table_Border - Fatal编程技术网

Html 表格边框随机显示,边框为:0

Html 表格边框随机显示,边框为:0,html,css,google-chrome,html-table,border,Html,Css,Google Chrome,Html Table,Border,仅在谷歌浏览器和微软Surface上发生 代码非常简单,如下所示: 设置 .菜单{ 宽度:100%; 边界间距:0; 边界:0; } .菜单td{ 背景色:#7373; 颜色:#ffffff; 填充:1em; } .菜单td a{ 颜色:白色; } Chrome版本49.0.2623.87 m,Windows 10,Surface Pro 3。 分辨率:2160x1440 原始屏幕截图: 填充了后是否可以修复@没有。再看一次屏幕截图,效果更好,但仍然可见。。。听起来像是撕裂问题……是的,

仅在谷歌浏览器和微软Surface上发生

代码非常简单,如下所示:


设置
.菜单{
宽度:100%;
边界间距:0;
边界:0;
}
.菜单td{
背景色:#7373;
颜色:#ffffff;
填充:1em;
}
.菜单td a{
颜色:白色;
}
Chrome版本49.0.2623.87 m,Windows 10,Surface Pro 3。 分辨率:2160x1440

原始屏幕截图:


填充了
是否可以修复@没有。再看一次屏幕截图,效果更好,但仍然可见。。。听起来像是撕裂问题……是的,你是对的。这不是一个边界问题。我有麻烦,因为我不使用windows 10,无法复制,我还有一个想法。
<table id='settings-menu' class='menu'>
  <tr>
    <td><b>Settings</b></td>
    <td><a href='?go=settings&category=users'>Users</a></td>
    <td><a href='?go=settings&category=resources'>Resources</a></td>
    <td><a href='?go=settings&category=notifications'>Notifications</a></td>
    <td><a href='?go=settings&category=tickets'>Tickets</a></td>
    <td><a href='?go=settings&category=clients'>Clients</a></td>
    <td><a href='?go=settings&category=billing'>Billing</a></td>
    <td><a href='?go=settings&category=inventory'>Inventory</a></td>
    <td><a href='?go=settings&category=interface'>Interface</a></td>
    <td><a href='?go=settings&category=profile'>Profile</a></td>
  </tr>
</table>

.menu {
  width: 100%;
  border-spacing: 0;
  border: 0;
}

.menu td {
  background-color: #737373;
  color: #ffffff;
  padding: 1em;
}
.menu td a {
  color: white;
}