Home › Forums › CSS › iFrame not working as expected › Reply To: iFrame not working as expected
July 21, 2014 at 7:30 am
#176002
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!