1

I have a page that has an iframe in it. for styling, I'm using tailwind-css. Now I have two scrollbars - iframe inner scroll and browser'scroll, I want to hide the inner scrollbar of the iframe and scroll with the browser scrollbar. I tried to use scrolling="no" and the inner scrollbar is removed but the browser scroll is stuck and the iframe is not fully displayed

<div className="h-full overflow-scroll>
   <iframe
      src={url}
      frameBorder="0"
      width="100%"
      scrollbar="no">
   </iframe>
</div>

Do you have any idea how can I do this? Thank you in advance

Pump3333
  • 31
  • 5

1 Answers1

0

set the height to fit the content and disable the scrollbar

<div className="h-full overflow-scroll>
   <iframe
      src={url}
      frameBorder="0"
      width="100%"
      height="640px"
      scrollbar="no">
   </iframe>
</div>
Dean Van Greunen
  • 5,060
  • 2
  • 14
  • 28