일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Windows 10
- 다윈 스트리밍 서버
- 초대장
- gson
- 처비
- HTML
- WebtoB
- bluestack
- 클래시 로얄
- 간접표현식
- 모바일게임
- 간접 표현식
- 다윈스트리밍서버
- Http Live Streaming Server
- 붕괴3
- ubuntu
- 하스스톤
- 윈도우10
- IT
- VBA
- 세븐나이츠
- JEUS6.0
- IT 인코딩 encoding
- JEUS
- Sculpt Erogonomic Desktop
- 윈도우 10
- 세나
- WiFi
- Clash Royale
- jQuery
- Today
- Total
공책
iframe을 이용한 웹페이지 구성 본문
<html>
<head>
<title> iframe에 대해 알아보자 </title>
</head>
<body>
<table width="600" height="550" bgcolor="blue" cellspacing="0" cellpadding="5">
<tr height="50" align="center">
<td width="200"><a href="top.html" target="view">[top]</a></td>
<!-- target에 iframe name을 입력하면 대상에 출력된다 -->
<td width="200"><a href="middle.html" target="view">[middle]
</a></td>
<td width="200"><a href="bottom.html" target="view">[bottom]
</a></td>
</tr>
<tr height="500" bgcolor="white">
<td colspan="3">
<iframe src="01.html" width="600" height="500" frameborder="0" scrolling="auto"
marginwidth="15" marginheight="15" name="view">
</iframe>
</td>
</tr>
</table>
</body>
</html>
iframe 속성
frameborder 경계선
scrolling 스크롤바 생성여부 auto, yes, no
marginwidth 좌우여백
marginheight 상하여백
name iframe이름
width, height 너비 높이
'웹 개발 > HTML 기초' 카테고리의 다른 글
frameset을 이용한 웹페이지 나누기 (0) | 2013.08.23 |
---|---|
table 안에 table 넣기 (0) | 2013.08.23 |
이미지 불러오기 (0) | 2013.08.20 |
목록만들기 (0) | 2013.08.20 |
<hr> 태그 사용법 (0) | 2013.08.20 |