边界和边界半径CSS样式在桌子上发生冲突

时间:2014-03-14 14:44:16

标签: css

我有一张附有以下样式的表:

    .myTable{
        width:97%;
        max-height: 190px;
        padding:10px;
        margin: 10px;
        background-color: #fff;
        border: 1px solid #D3D7DC;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

我希望我的桌子有圆角,此刻,桌子确实有圆角,但是1px边框

border: 1px solid #D3D7DC;

在桌子周围仍然是正方形,所以它看起来像桌子中的一张桌子......

有没有人建议为什么会这样?

2 个答案:

答案 0 :(得分:1)

它可能与您在表中的单元格样式有关。默认情况下,单元格将继承表格本身的样式。尝试添加:

.myTable tr, .myTable tr td{
    border: none;
}

这应该可以解决您的问题,但我需要查看您的html文件以确保..我希望它有所帮助。

答案 1 :(得分:-1)

table{
    width:97%;
    max-height: 190px;
    max-height: 190px;
    padding:10px;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #D3D7DC;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}