Skip to content

Instantly share code, notes, and snippets.

@jiceb
Created February 21, 2013 10:32
Show Gist options
  • Select an option

  • Save jiceb/5003785 to your computer and use it in GitHub Desktop.

Select an option

Save jiceb/5003785 to your computer and use it in GitHub Desktop.
Responsive reset for images
/*
Article : http://blog.goetter.fr/post/13447625254/un-reset-responsive-pour-les-images
Demo : http://ie7nomore.com/fun/responsive-images/
*/
img { /* <img alt="" src="youhou.jpg" width="680" height="454"> */
max-width: 100%;
height: auto; width: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment