표 너비와 높이
표 너비와 높이
표의 너비와 높이는 width및 height속성 에 의해 정의됩니다 .
아래 예제는 표의 너비를 100 %로 설정하고 <th> 요소의 높이를 50px로 설정합니다.
예
table {
width: 100%;
}
th {
height: 50px;
}
<!DOCTYPE html>
<html>
<head>
<style>
table, td, th {
border: 1px solid black;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
height: 50px;
}
</style>
</head>
<body>
<h2>The width and height Properties</h2>
<p>Set the width of the table, and the height of the table header row:</p>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Savings</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
<td>$100</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
<td>$150</td>
</tr>
<tr>
<td>Joe</td>
<td>Swanson</td>
<td>$300</td>
</tr>
<tr>
<td>Cleveland</td>
<td>Brown</td>
<td>$250</td>
</tr>
</table>
</body>
</html>

게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 17 | HTML | 21년 전 | 3711 | ||
| 16 | HTML |
아우겐나이스
|
21년 전 | 6283 | |
| 15 | HTML | 21년 전 | 5608 | ||
| 14 | HTML | 21년 전 | 5810 | ||
| 13 | 13년 전 | 2240 | |||
| 12 | 13년 전 | 9643 | |||
| 11 | 13년 전 | 2590 | |||
| 10 | 13년 전 | 2395 | |||
| 9 | 13년 전 | 3598 | |||
| 8 | 13년 전 | 9450 | |||
| 7 | 13년 전 | 3508 | |||
| 6 | 13년 전 | 5863 | |||
| 5 | 13년 전 | 3318 | |||
| 4 | 13년 전 | 4656 | |||
| 3 | 13년 전 | 4534 | |||
| 2 | 13년 전 | 5476 | |||
| 1 | 13년 전 | 3542 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기