Table.html 1.38 KB
<!DOCTYPE html>
<html lang="ko">

<head>
    <meta charset="utf-8">
    <style>
        table {
            border-collapse: collapse;
        }
        
        th,
        td {
            text-align: left;
            padding: 8px;
        }
        
        tr:nth-child(odd) {
            background-color: #f2f2f2
        }
        
        th {
            background-color: #4CAF50;
            color: white;
            column-span: all;
        }
    </style>
</head>

<body>
    <div style="overflow-x:auto;">
        <table border="1">
            <thead>
                <tr>
                    <th>
                        Quiz 1
                    </th>
                </tr>
                <tr>
                    <th>
                        학번
                    </th>
                    <td>
                        2010104019
                    </td>
                    <td>
                        2014110448
                    </td>
                    <td>
                        2012104136
                    </td>
                </tr>
                <tr>
                    <th>
                        점수
                    </th>
                    <td>40</td>
                    <td>50</td>
                    <td>
                        50
                    </td>
                </tr>
            </thead>
        </table>
    </div>
</body>

</html>