ie-table不显示边框解决办法

.thisTd
{   
      background-clip: padding-box;    
      position:relative;
}

原来背景也有边界的:决定背景会盖住哪些部分。

background-clip: border-box;    
background-clip: padding-box;
background-clip: content-box;

background-clip: inherit;

原创笔记
原文地址:https://www.cnblogs.com/minty/p/7602178.html