2012-09-02 5 views
0

iframe에 스크롤이 있지만 스크롤 막대가 표시되지 않습니까? 어째서?iframe에 스크롤이 있지만 스크롤바가 없습니다.

<div id="wpr"> 

     <iframe id="my-iframe" scrolling="yes" frameborder="0" src="http://kikar.changemakers.com/%D7%94%D7%AA%D7%97%D7%A8%D7%95%D7%AA-%D7%9C%D7%99%D7%96%D7%9E%D7%95%D7%AA-%D7%91%D7%97%D7%99%D7%A0%D7%95%D7%9A" > 

     </iframe> 
    </div> 
#wpr{ 
    width: 953px;  
    height: 500px;  
    overflow: hidden;  
    position: relative; 
    margin: 0 auto; 
    height: 1366px; 
} 
#my-iframe{ 
    position: absolute;  
    top: -179px;  
    left: -147px;  
    width: 1262px;  
    height: 1587px; 
} 
+0

사용중인 운영 체제 및 브라우저는 무엇입니까? – Scott

+0

FF 및 Chrome에서 시도했는데 두 경우 모두 iframe을 표시하지 않습니다. 나는 윈도우 XP를 사용한다 – thormayer

+1

CSS :'overflow : scroll','overflow-y : scroll','overflow-x : scroll' – Peter

답변

0
#wpr{ width : 953px; height : 500px; overflow : hidden; position : relative; margin: 0 auto; height:1366px;} 

내-은 iframe {피터 Szymkowski에

overflow-y:scroll; 
overflow-x:hidden;  
position : absolute;  
top  : -179px;  
left  : -147px;  
width : 1262px;  
height : 1587px; } 

http://jsfiddle.net/ZZUaa/

kudus :

이 내 코드입니다!

관련 문제