HTML и CSS: закругленные углы на столах - PullRequest
0 голосов
/ 23 января 2020

У меня есть небольшая проблема. Я бы хотел, чтобы все углы моего стола были скруглены, однако темные ряды, похоже, все еще имеют заостренную границу. Спасибо за вашу помощь!

The Problem:

.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);
}

Ответы [ 2 ]

1 голос
/ 23 января 2020

Добавить «переполнение: скрыто» на самой таблице:

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

    /* add this */
    overflow:hidden
}
1 голос
/ 23 января 2020

набор overflow:hidden из table. Попробуйте это

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