Skip to content

Instantly share code, notes, and snippets.

@hemantajax
Created June 20, 2013 06:29
Show Gist options
  • Save hemantajax/5820668 to your computer and use it in GitHub Desktop.
Save hemantajax/5820668 to your computer and use it in GitHub Desktop.
Responsive Image
<!DOCTYPE html>
<html>
<head>
<title>Responsive Image</title>
<meta charset="utf-8" />
<style>
#wrapper{
border: 1px solid #ccc;
width: 80%;
margin:20px;
}
#myDiv
{
height:auto;
width:auto;
}
#myDiv img
{
max-width:100%;
max-height:100%;
margin:auto;
display:block;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="myDiv">
<img src="http://lorempixel.com/600/450/" alt="My Image">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment