Skip to content

Instantly share code, notes, and snippets.

@mkoller
Created January 21, 2015 16:45
Show Gist options
  • Save mkoller/4aa16bc24e7750620f4e to your computer and use it in GitHub Desktop.
Save mkoller/4aa16bc24e7750620f4e to your computer and use it in GitHub Desktop.
<!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