简体   繁体   中英

Iframe scroll bar is not visible in Android phones

I am using this code:

<div>
    <iframe class="careers" frameborder="0" height="1000px" scrolling="yes"
            src="http://intranet.pamten.com/careers/currentopenings.aspx" width="100%">
    </iframe>
</div>

the problem is when I am seeing in Samsung Galaxy Tab 3 (Android) mobile scrolling is happening but scroll bar is not visible.

Can anybody please help me on this issue.....

Scroll bar will be hidden for iframe in the following situations,

  • Using the seamless property for your iframe tag hides the scroll bar.
  • As you are testing in Tab, it is possible the width you have given to class 'careers' will be out of screen, hides the scrollbar.
  • Also possible to hide the scrollbar using the css property. Check it out if any.

Please note, by default iframe scroll bar will be shown for any screen size width.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM