10주차 - jsp (11) rowspan, colspan
2022. 9. 8. 18:18ㆍjsp/html
오늘의 목표
01. rowspan 의 사용
02. colspan 의 사용
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ex12</title>
<style type="text/css">
table{width:500px;}
</style>
</head>
<body>
<table border=1>
<tr> <!-- row -->
<th>1행 1열</th> <!-- head 굵은 글씨, 가운데 정렬 -->
<td>1행 2열</td>
<th rowspan="2">1, 2행 3열</th>
</tr>
<tr>
<!-- rowspan, colpsan 둘다 뒤에 들어가는 값에 "" (쌍따옴표)의 유무는 크게 관계가 없나보다 -->
<td colspan=2>2행 1, 2 열</td> <!-- data 보통 글씨 -->
</tr>
<tr>
<th colspan="3">3행 1, 2, 3열</th>
</tr>
</table>
</body>
</html>
'jsp > html' 카테고리의 다른 글
10주차 - jsp (13) <input> (0) | 2022.09.13 |
---|---|
10주차 - jsp (12) <caption> (0) | 2022.09.08 |
10주차 - jsp (11) <table>, <th>, <td> (0) | 2022.09.08 |
10주차 - jsp (10) id, class, <style> (0) | 2022.09.08 |
10주차 - jsp (9) <img>, 반응형&고정형 (0) | 2022.09.08 |