gpt4 book ai didi

HTML 和 CSS : rounded corners on tables

转载 作者:行者123 更新时间:2023-12-01 21:48:30 26 4
gpt4 key购买 nike

我有点问题。我希望我的 table 的所有 Angular 落都是圆形的,但是黑色的行似乎仍然有一个尖锐的边框。感谢您的帮助!

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

最佳答案

在表格本身上添加“溢出:隐藏”:

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
}

关于HTML 和 CSS : rounded corners on tables,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59878337/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com