Skip to content

Instantly share code, notes, and snippets.

@aldesantis
Created November 3, 2015 12:06
Show Gist options
  • Save aldesantis/fb552c2e392b1e0d57d1 to your computer and use it in GitHub Desktop.
Save aldesantis/fb552c2e392b1e0d57d1 to your computer and use it in GitHub Desktop.
Responsive images
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="utf-8">
<title>Immagini</title>
<style>
.container {
max-width: 500px;
}
img {
width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<img src="http://placehold.it/1000x1000">
</div>
<div class="container">
<img src="http://placehold.it/1000x1000">
</div>
<div class="container">
<img src="http://placehold.it/1000x1000">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment