Broken iframe into frame

Broken iframe into frame

by dat nguyen -
Number of replies: 1

I added a iframe into module URL.

<iframe ng-src="{{ url }}" frameborder="0" scrolling="no" style="width:100%;height:100%;"></iframe>

The content in iframe is broken on iOS.   Android works correctly.

How to make it can responsive on iOS devices.

Average of ratings: -
In reply to dat nguyen

Re: Broken iframe into frame

by dat nguyen -

I found a solution for this:

Adding more css:

 iframe {
        width: 1px;
        min-width: 100%;
        *width: 100%;
    }