Created
January 22, 2016 16:24
-
-
Save r8n5n/a83bcc9ff97b9da1b1b9 to your computer and use it in GitHub Desktop.
Responsive iframe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- set the max width accordingly --> | |
<div style="margin: 0 auto; max-width: 960px; position: relative;"> | |
<!-- set the padding % as the aspect ratio of the content e.g. 960/560 = 5.833333 --> | |
<div style="padding-bottom: 58.33333333%;"> | |
<!-- the width=1; max-width=100% is for iOS --> | |
<iframe scrolling="no" src="urls/to/iframe.html" style="position: absolute;width: 1px;min-width:100%;height: 100%;"></iframe> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment