2013-10-25 4 views
-2
<!Doctype html> 
<html> 
<frameset rows="26%,24%,*" noresize border="0" frameborder="no" framespacing="0"> 
<frame src="frame_a.html" target="_self" name="logo" scrolling="auto"> 
<frame src="frame_b.html" target="_self" name="menu" scrolling="no"> 
<frame src="frame_c.html" name="images_slider" scrolling="auto" target="_self"> 
</frameset> 
</html> 

그래도 공간을 제거하는 방법은 프레임 사이에 공간이 있습니까 ??? 프레임과 프레임 인 메뉴와 헤더 사이의 공간을 제거하고 싶습니다.프레임 사이의 공간

+0

[가능한 여분의 공백 제거 Iframes?] (http://stackoverflow.com/questions/6735022/remove-the-extra-whitespace-surrounding-iframes) – JoDev

+0

약간의 Google :'사이의 공백 제거 iframe' 그리고 당신은 대답을 발견하고, 더 ... 그리고 [이 게시물을 참조하십시오 (http://stackoverflow.com/questions/7290214/html-strange-space-between-iframe-elements) – JoDev

답변

0

frame_#.html 파일 내의 본문 및 HTML 여백을 0으로 설정하면 좋을 것입니다.

0

업데이트하여 프레임 요소의 행 속성

<frameset rows="26%,24%,*" noresize border="0" frameborder="no" framespacing="0">

에서 : 26 % 에 45

Example

I 백분율 대신 픽셀을 사용하고 (예를 들어 45 픽셀 = 45) 프레임 a와 프레임 b 사이의 간격. 프레임 b와 프레임 c 사이의 간격에 따라 두 번째 매개 변수 (24 %)를 조정할 수 있습니다. 도움이

Documentation

희망!