0

我的 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; 
}
4

1 回答 1

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

我的 iframe {

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

http://jsfiddle.net/ZZUaa/

向彼得·辛科夫斯基致敬!

于 2012-09-02T13:46:31.490 回答