Skip to content

Instantly share code, notes, and snippets.

@domantasg
Created August 8, 2017 12:08
Show Gist options
  • Select an option

  • Save domantasg/a01da889d7a97e281c856dd32cade864 to your computer and use it in GitHub Desktop.

Select an option

Save domantasg/a01da889d7a97e281c856dd32cade864 to your computer and use it in GitHub Desktop.
/* GOOD WIDTH */
.inline-text-box {
width: 50%;
}
/* BAD WIDTH */
.inline-text-box {
width: 800px;
}
/* GOOD IMAGE */
img {
max-width: 100%;
height: auto
}
/* BAD IMAGE */
img {
width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment