how remove horizontal scroll bar for iframe on google chrome

前端 未结 1 630
醉话见心
醉话见心 2021-01-12 11:55

I want to have vertical scrolling enable and horizontal scrolling off.

using scrolling=\"no\" is not what i want since i still want the vertical scr

1条回答
  •  旧时难觅i
    2021-01-12 12:42

    If you have access to iframe source page you can place

    body {
        overflow-x:hidden;
    }
    

    inside of that page. If you don't, but at least pages are from the same domain, I believe something like this from the parent page should work:

    #myiframe body {
        overflow-x:hidden;
    }
    

    If none of the above is true - you can simulate "overflow-x: hidden" by actually hiding the horizontal scrollbar inside of the iframe container. Place Iframe into a container DIV of a lesser height, e.g.: