gpt4 book ai didi

html - table Angular 上的边框半径不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 21:55:58 25 4
gpt4 key购买 nike

我有一个电子邮件模板 here应用了 CSS 样式以使边缘变圆。

我希望左上角、右上角、左下角和右下角的外 Angular 是圆的。所有内部表格边缘/Angular 落都应该是方形的。

不过,您可以看到它也使内部边缘变圆:

标题:

enter image description here

页脚:

enter image description here

我应该如何修改我的 CSS 以仅使外部边缘/Angular 变圆?

table {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border-collapse: separate;
}
/* Top Left */
table tr:first-child th:first-child {
-webkit-border-top-left-radius: 5px;
-moz-border-radius-topleft: 5px;
border-top-left-radius: 5px;
}
/* Top Right */
table tr:first-child th:last-child{
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topright: 5px;
border-top-right-radius: 5px;
}
/* Bottom Left */
table tr:last-child td:first-child{
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-left-radius: 5px;
}
/* Bottom Right */
table tr:last-child td:last-child{
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius-bottomright: 5px;
border-bottom-right-radius: 5px;
}

最佳答案

使用速记,所以,

对于页眉(#templateHeader),

border-radius: 5px 5px 0 0; /*top-left top-right bottom-right bottom-left*/

enter image description here

对于页脚(#templateFooter),

border-radius: 0 0 5px 5px;

enter image description here

关于html - table Angular 上的边框半径不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13812822/

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