使用表时Chrome中的随机水平线

时间:2016-07-20 18:43:24

标签: html css google-chrome

当我使用表格时,我只在Chrome浏览器中看到这些随机的水平线条。有趣的是,当我缩小1(鼠标滚轮刻度)时它们会消失,当我缩小2时,它们会再次出现,然后当我缩小3个“刻度”时它们会消失......

知道我可以添加哪些属性来摆脱它吗? enter image description here

请不要介意页面上的文字,现在它或多或少等于lorem ipsum。

我的CSS:

body{
    margin:0;
    padding:0;
    background-color: #000;
    width: 100% !important;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

img{
    display:block !important;
    max-width:100%;
    height:auto;
    width:100%;
    -ms-interpolation-mode: bicubic;
    outline: none;
    }

img.bg {

  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;

  /* Set up proportionate scaling */
  width: 100%;
  height: auto;

  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
}

table td, tr {
    border-collapse:collapse;
    margin:0;
    padding:0;
    vertical-align:top;
}

0 个答案:

没有答案