Remove iframe horizontal scrollbar

Viewed 66874

I want to remove the horizontal scrollbar in my iframe. I just need a vertical scrollbar to view the lengthy contents. My code is

<iframe height='514' width='790' 
        marginwidth='0' marginheight='0' 
        frameborder='0' 
        overflow-y='scroll' 
        overflow-x='hidden'>
</iframe>

Anyone please solve my problem. Advance Wishes.

5 Answers

Try setting scrolling attribute to "no"

<iframe scrolling="no" ..............> </iframe>
Related