实现移动端table border 0.5px问题

设置table的border css 为 border:1px solid #cfcfcf;时,在移动端显示时,border-width:2px;不符合UI设计;

使用border:0.5px solid #cfcfcf时,border显示不出来。

1、设置table的border为0;background为#cfcfcf,collapse=“1”,td的background为#fff;结果显示不出来border。

2、使用scale()来实现,代码如下:


table{
    margin:0 0.4rem;
    border-collapse:collapse;
    position: relative
}
table td {
    padding: 0.347rem 0.72rem;
    position: relative;
}
table:after{
    content: "";
    display: block;
    position: absolute;
    left: 0%;
    top: 0%;
    width: 200%;
    height: 200%;
    border:1px solid #cfcfcf;
    border-left: none;
    border-bottom: none; 
    transform-origin: 0 0 ; 
    transform:scale(0.5); }
table td:after{
    content: ""; 
    display: block; 
    position: absolute; 
    left: 0%; 
    top: 0%; 
    width: 200%; 
    height: 200%; 
    border:1px solid #cfcfcf; 
    border-top: none; 
    border-right: none; 
    transform-origin: 0 0 ; 
    transform:scale(0.5); 
}

实现效果如下图


实现移动端table border 0.5px问题_第1张图片


 
 

你可能感兴趣的:(前端,border,table,0.5px)