Created
January 21, 2015 16:45
-
-
Save mkoller/4aa16bc24e7750620f4e to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Demo</title> | |
<style> | |
.fluidMedia { | |
position: relative; | |
padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */ | |
padding-top: 30px; | |
height: 0; | |
overflow: hidden; | |
} | |
.fluidMedia iframe { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="fluidMedia"> | |
<p> | |
<iframe frameborder="1" scrolling="no" src="http://rsvp-milwaukee.simpleviewcrm.com/rsvp/"></iframe></p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment