Min's blog

I choose to see the beauties in the world.

导航

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

Posted on 2017-09-27 15:55  Min77  阅读(651)  评论(0编辑  收藏  举报

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

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

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

background-clip: inherit;