Created
November 3, 2015 12:06
-
-
Save aldesantis/fb552c2e392b1e0d57d1 to your computer and use it in GitHub Desktop.
Responsive images
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
<!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