About CSS 테이블 생성기
CSS로 스타일이 적용된 HTML 테이블 생성
Use this free online css 생성기 tool to work faster without installing extra software. The interface is built for quick input, clear output, and straightforward results on desktop and mobile devices.
CSS로 스타일이 적용된 HTML 테이블 생성
Table Style
Colors
Spacing & Borders
Options
Preview
| Name | Role | Status | |
|---|---|---|---|
| John Doe | john@example.com | Developer | Active |
| Jane Smith | jane@example.com | Designer | Active |
| Bob Johnson | bob@example.com | Manager | Inactive |
| Alice Brown | alice@example.com | Developer | Active |
| Charlie Wilson | charlie@example.com | Designer | Active |
CSS
.table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.table th {
background-color: #f3f4f6;
color: #111827;
padding: 12px;
text-align: left;
font-weight: 600;
border-bottom: 1px solid #e5e7eb;
}
.table td {
padding: 12px;
color: #374151;
}
.table tbody tr {
background-color: #ffffff;
transition: background-color 150ms ease;
}
.table tbody tr:nth-child(even) {
background-color: #f9fafb;
}
.table tbody tr:hover {
background-color: #f3f4f6;
}HTML Structure
<table class="table">
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</tbody>
</table>CSS로 스타일이 적용된 HTML 테이블 생성
Use this free online css 생성기 tool to work faster without installing extra software. The interface is built for quick input, clear output, and straightforward results on desktop and mobile devices.
This tool runs in your browser whenever possible, which keeps your inputs private and reduces unnecessary round-trips to the server.