gpt4 book ai didi

html - 表格行边框半径不起作用 - 替代方案?

转载 作者:太空宇宙 更新时间:2023-11-04 15:07:43 25 4
gpt4 key购买 nike

如果您在这里查看我的网站:http://mcderp.x10.mx/members.php ,当鼠标悬停在底行时,您可以看到该行没有圆 Angular ,我尝试将“溢出:隐藏”应用于具有圆 Angular 的表类,但这不起作用! :(

最佳答案

您必须为单个单元格设置样式。 Firefox 和 Chrome 上的工作示例:http://jsfiddle.net/AyKE7/

CSS

table {
border-collapse: collapse;
}
th,
td {
padding: 4px 7px;
}
/* hover */
tr:hover th,
tr:hover td {
background-color: lightblue;
}
/* hover, left cell */
tr:hover th {
border-radius: 5px 0 0 5px;
}
/* hover, last cell on he right */
tr:hover td:last-child {
border-radius: 0 5px 5px 0;
}

关于html - 表格行边框半径不起作用 - 替代方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15700853/

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