首页 > 解决方案 > 桌子底下的边框怎么去掉

问题描述

我已经设置了一个表格,它适用于 IE 和 Firefox。但是,在 chrome 中,它有一个深色的底部边框,在标题下划线。有没有办法摆脱它? 在此处输入图像描述 与下图相比,IE 和 Firefox 的表格标题都没有下划线的粗黑边框。 在此处输入图像描述

.thresh_table
{
    opacity: 0;
    visibility: hidden;
    position: relative;
    top: -46.5vh;
    transform: scale(0.8);
    table-layout: fixed;
    border-collapse: seperate;
    font-weight: bold;
    font-family:Book Antiqua;
    background-color: white;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);

}

.thresh_box{
    height: 4vh;
    font-weight: bold;
    font-family:Book Antiqua;
    font-size: 3vh;
    line-height: 3vh;
    text-align: center;
}

标签: htmlgoogle-chrome

解决方案


推荐阅读