실행 화면
소스 코드
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style type="text/css"> table, tr{ border: 1px solid blue; border-collapse: collapse; /* 기본 두줄로 그어지는 선을 한줄로 */ background-color: #ffff00; } </style> </head> <body> <table border="1" style="width: 100%;"> <tr> <th>이름</th> <td>홍길동</td> </tr> <tr> <th rowspan="2">전화번호</th> <!-- rowspan -> 아래 칸(row)을 합치는 것 --> <td>222-3333</td> </tr> <tr> <td>234-4567</td> </tr> </table> </body> </html> | cs |
'IT Study > Web' 카테고리의 다른 글
[HTML] List 종류 (0) | 2018.08.06 |
---|---|
HTML 테이블 응용 (0) | 2018.07.25 |
HTML 테이블 예제-01 (0) | 2018.07.25 |
HTML 기본 실습-04 (0) | 2018.07.24 |
HTML 기본 실습-03 (0) | 2018.07.24 |