table
-
Table을 이용하여 만들어봐~~국비 교육 내용 정리 2023. 5. 3. 09:28
-HTML- * 내가 만든 코드~ DOCTYPE html> Document body{ text-align: center; } table{ width: 500px; border-collapse: collapse; margin-left: 50px; } th,td{ border: 1px solid black; padding: 7px; text-align: center; font-size: 20; } th{ background-color: red; color: white; } .blue{ background-color: blue; color:white; } .red{ background-color: red; color:white; } 테이블 기본형(2X3) 1 2 3 4 5 6 행 병합 테이블 1 2 3 4 5..