Notice
«   2024/09   »
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
관리 메뉴

Jade_o.o

[html] 08 - table태그 rowspan,colspan 실습-도형 만들기 본문

HTML

[html] 08 - table태그 rowspan,colspan 실습-도형 만들기

by jade 2024. 1. 10. 18:45

table태그 중 rowspan,colspan 사용하여 도형 만들기

html공부를 복습하며 카페 음료 문서 작성을 구현해 보았다.

 

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>table - rowspan, colspan</title>
</head>
<body>
    <table border="1" cellspacing="0" cellpadding="50">
        <caption><h2>colspan과 rowspan 이용하기</h2></caption>
        <tr>
            <td colspan="2">1</td>
            <td rowspan="2">2</td>
        </tr>
        <tr>
            <td rowspan="2">3</td>
            <td>center</td>
        </tr>
        <tr>
            <td colspan="2">4</td>
        </tr>
    </table>
</body>
</html>

 

table - rowspan, colspan

colspan과 rowspan 이용하기

1 2
3 center
4

=> html 코드 실행 시 결과창