diff --git a/src/extra/normalize.src.css b/src/extra/normalize.src.css index 8c43b970..a55fa8f5 100644 --- a/src/extra/normalize.src.css +++ b/src/extra/normalize.src.css @@ -305,26 +305,26 @@ } :where(table:not(:has(tfoot)) tr:last-child td:first-child) { - border-bottom-left-radius: var(--nice-inner-radius); + border-end-start-radius: var(--nice-inner-radius); } :where(table:not(:has(tfoot)) tr:last-child td:last-child) { - border-bottom-right-radius: var(--nice-inner-radius); + border-end-end-radius: var(--nice-inner-radius); } -:where(table thead th:first-child) { - border-top-left-radius: var(--nice-inner-radius); +:where(table thead tr:first-child th:first-child) { + border-start-start-radius: var(--nice-inner-radius); } -:where(table thead th:last-child) { - border-top-right-radius: var(--nice-inner-radius); +:where(table thead tr:first-child th:last-child) { + border-start-end-radius: var(--nice-inner-radius); } -:where(tfoot th:first-of-type) { +:where(tfoot tr:last-child :is(th,td):first-of-type) { border-end-start-radius: var(--nice-inner-radius); } -:where(tfoot th:last-of-type) { +:where(tfoot tr:last-child :is(th,td):last-of-type) { border-end-end-radius: var(--nice-inner-radius); }