在設計HTML 表格樣式時,開發人員在嘗試將樣式套用於表格行(
嘗試將邊框半徑(-moz-border-radius 或現代 border-radius)應用於表格行時會出現一個常見問題。不幸的是,這個屬性不能直接套用於
鑑於此限制,需要一種解決方法來實現表格行上的圓角。此解決方案涉及將邊框樣式策略套用至各個
<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中文網其他相關文章!