“Радиус границы границы строк CSS” Ответ

Радиус границы границы строк CSS

table { border-collapse: separate; }
td { border: solid 1px #000; }
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; }
DevPedrada

Столовый радиус границы

thead th:first-child{border-top-left-radius: 15px;}
thead th:last-child{border-top-right-radius: 15px;}
tbody tr:last-child>td:first-child{border-bottom-left-radius: 15px;}
tbody tr:last-child>td:last-child{border-bottom-right-radius: 15px;}
Arjun

Ответы похожие на “Радиус границы границы строк CSS”

Вопросы похожие на “Радиус границы границы строк CSS”

Больше похожих ответов на “Радиус границы границы строк CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования