Skip to content

Instantly share code, notes, and snippets.

@grovesdm
Last active December 11, 2018 04:02
Show Gist options
  • Save grovesdm/0e5c181be6fb79a78e3ee953b36eef5e to your computer and use it in GitHub Desktop.
Save grovesdm/0e5c181be6fb79a78e3ee953b36eef5e to your computer and use it in GitHub Desktop.
A collection of useful snippets related to images
// Images by default will display as inline-block
// to remove the whitespace below the image display the image as a block.
img {
display: block;
}

[toc]

Remove Whitespace

Images by default will display as inline-block so to remove the whitespace below the image display as block.

img {
  display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment