Skip to content

Instantly share code, notes, and snippets.

@bynaki
Last active November 20, 2015 23:02
Show Gist options
  • Save bynaki/7774e8c878754589f14a to your computer and use it in GitHub Desktop.
Save bynaki/7774e8c878754589f14a to your computer and use it in GitHub Desktop.
html - 참고 사이트 - <img> - ex01 - ex02 :: 이미지 사이즈 제한.

html

참고 사이트

placehold.it

  • 원하는 크기의 이미지를 재공해 준다. 사용법은 예제 참조.

ex01
<img src="mdn-logo-sm.png" alt="MDN">
ex02 :: 이미지 사이즈 제한.

html:

<img src="http://placehold.it/1000x400">

css:

img {
  max-width: 100%
  /*이미지 사이즈가 부모 영역 사이즈를 넘지않게 한다.*/
}
{"noteId":"15126f05e27-b2ba15b7","main":"15126f05e27-b2ba15b7.md","title":"html - 참고 사이트 - &lt;img&gt; - ex01 - ex02 :: 이미지 사이즈 제한."}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment