Else/- Computer
프레임 나누기
unisty
2004. 12. 14. 12:31
<html>
<head>
<title>yiyuni.com.. the 1st.</title>
</head>
//프레임을 나눈다.//
<frameset cols="*,0"boder="0"> → col : 좌우를 나눈다.
//우선 상하를 나눈다. 최상 100px, 가운데는 랜덤, 제일 아랫부분 30px//
<frameset cols="1*" rows="100,*,30" border="0"> → rows : 상하를 나눈다.
<frame src="(최상위 100px 에 들어갈 html 주소)" scrolling="no"(스크롤바는 없게) noresize>
//가운데 부분을 또 3등분 하였다.//
<frameset rows="1*" cols="196,828,*" border="0">
<frame src="(제일 왼쪽에 있는 196px에 들어갈 html 주소)" name="left" scrolling="no"
marginwidth="10" marginheight="14" noresize>
<frame src="(가운데 들어갈 html 주소, 화면이 바뀔부분.)" name="right" scrolling="auto"
marginwidth="10" marginheight="14" noresize>
<frame src="(제일 오른쪽에 들어갈 html 주소)" name="left" scrolling="auto"
marginwidth="10" marginheight="14" noresize></frameset>
//제일 아래쪽에 위치한 프레임 지정//
<frame src="e.html" name="left" scrolling="auto"
marginwidth="10" marginheight="14" noresize>
</frameset>
</html>
<head>
<title>yiyuni.com.. the 1st.</title>
</head>
//프레임을 나눈다.//
<frameset cols="*,0"boder="0"> → col : 좌우를 나눈다.
//우선 상하를 나눈다. 최상 100px, 가운데는 랜덤, 제일 아랫부분 30px//
<frameset cols="1*" rows="100,*,30" border="0"> → rows : 상하를 나눈다.
<frame src="(최상위 100px 에 들어갈 html 주소)" scrolling="no"(스크롤바는 없게) noresize>
//가운데 부분을 또 3등분 하였다.//
<frameset rows="1*" cols="196,828,*" border="0">
<frame src="(제일 왼쪽에 있는 196px에 들어갈 html 주소)" name="left" scrolling="no"
marginwidth="10" marginheight="14" noresize>
<frame src="(가운데 들어갈 html 주소, 화면이 바뀔부분.)" name="right" scrolling="auto"
marginwidth="10" marginheight="14" noresize>
<frame src="(제일 오른쪽에 들어갈 html 주소)" name="left" scrolling="auto"
marginwidth="10" marginheight="14" noresize></frameset>
//제일 아래쪽에 위치한 프레임 지정//
<frame src="e.html" name="left" scrolling="auto"
marginwidth="10" marginheight="14" noresize>
</frameset>
</html>