使用邊框半徑設定表格行樣式
在 HTML 表格中,
要克服此限制,您可以使用以下CSS 樣式:
<code class="css">table { border-collapse: separate; border-spacing: 0; } td { border: solid 1px #000; border-style: none solid solid none; padding: 10px; } tr:first-child td:first-child { border-top-left-radius: 10px; } tr:first-child td:last-child { border-top-right-radius: 10px; } tr:last-child td:first-child { border-bottom-left-radius: 10px; } tr:last-child td:last-child { border-bottom-right-radius: 10px; } tr:first-child td { border-top-style: solid; } tr td:first-child { border-left-style: solid; }</code>
這些樣式完成以下任務:
以上是如何在 HTML 中為表格行新增圓角?的詳細內容。更多資訊請關注PHP中文網其他相關文章!