小编Cod*_*Cat的帖子

HTML 和 CSS:表格上的圆角

我有一点问题。我希望桌子的所有角都是圆角的,但是深色的行似乎仍然有尖角的边框。感谢您的帮助!

问题:

.table_background {
    display: flex;
    background-color: white;
    margin-left: 3vw;
    margin-right: 3vw;
    margin-bottom: 10vh;
    margin-top: 5vh;
    box-shadow: 0px 0px 10px rgba(114, 114, 113, 0.5);
    border-radius: 15px;
}

table {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    border-collapse: collapse;
    width: 100%;
    border-radius: 15px;
}

th {
    font-size: 18px;
    text-align: left;
    padding: 20px 20px 20px 20px;
}

table,
td {
    padding: 8px 8px 8px 20px;
}

tr:nth-child(even) {
    background-color: #eff2f5;
}

tr:not(:first-child):hover {
    background-color: rgba(114, 114, 113, 0.2);
}
Run Code Online (Sandbox Code Playgroud)

html css border radius

4
推荐指数
1
解决办法
1万
查看次数

标签 统计

border ×1

css ×1

html ×1

radius ×1