我的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 :(得分:0)
#wpr{ width : 953px; height : 500px; overflow : hidden; position : relative; margin: 0 auto; height:1366px;}
overflow-y:scroll;
overflow-x:hidden;
position : absolute;
top : -179px;
left : -147px;
width : 1262px;
height : 1587px; }
kudus对Peter Szymkowski!