Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS iFrame not working as expected Reply To: iFrame not working as expected

#176002
TheDutchCoder
Participant

The iframe is set to “scrolling=no”, that’s one of the problems.

In order to make it scroll, make sure the iframe doesn’t have that attribute (or sit it to “yes”), and then in your CSS, set the following:

html {
  height: 100%;
}

That should fix it!