채택완료

table

테이블에 border-radius를 주고 싶은데 줄수 있는 방법이 있을까요??

|

답변 2개

채택된 답변
+20 포인트

Copy
<style type="text/css">
    table {
  border-collapse: collapse;
  border-radius: 10px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #000;
}

 </style>

답변을 작성하려면 로그인이 필요합니다.