I have embedded a flutter web app onto my Wordpress site. The flutter app is connected to an API and has a varying height. Is there a way to make the Iframe change its height depending on what's shown in it?
My code so far:
<iframe src="My-URL" height="600" width="100%"></iframe>
Side note, is there a way to turn off scrolling when I hover over the iframe (I still need to be able to click on it).
scrolling="no"
doesn't seem too be working.
Thankful for all answers :)