Menu



Manage

파일 목록
Study_Web > 이후/test6.html Lines 39 | 834 바이트
다운로드

                        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        table {
            border: 1px solid black;
            border-collapse: collapse;
        }

        td {
            border: 1px solid black;
            width: 50px;
            text-align: center;
        }
    </style>
</head>

<body>
    <h3>비정형 표 만들기</h3>
    <hr>
    <table>
        <tr>
            <td rowspan=3>A</td>
            <td colspan=2>B</td>
        </tr>
        <tr>
            <td rowspan=2>C</td>
            <td>D</td>
        </tr>
        <tr>
            <td>E</td>
        </tr>
    </table>
</body>