Skip to content

Instantly share code, notes, and snippets.

@igorpronin
Created August 15, 2015 13:50
Show Gist options
  • Save igorpronin/c0f0f71807ee17f15f36 to your computer and use it in GitHub Desktop.
Save igorpronin/c0f0f71807ee17f15f36 to your computer and use it in GitHub Desktop.
HTML, CSS / Правильная верстка: ограничение изображения по размеру блока
HTML
<div class="wrap">
<img src="img/img.jpg">
</div>
CSS
.wrap {
width: 200px;
heigth: 200px;
}
.wrap img {
max-width: 200px;
max-height: 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment