Skip to content

Instantly share code, notes, and snippets.

@Griever
Created April 15, 2012 15:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Griever/2393448 to your computer and use it in GitHub Desktop.
Save Griever/2393448 to your computer and use it in GitHub Desktop.
画像の背景を市松模様にするCSS
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix(data:image/),
regexp(".*\.(jpe?g|png|gif|bmp|svg|JPE?G|PNG|GIF|BMP|SVG)([?#].*)?$") {
body {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAAAAABWESUoAAAAHUlEQVQ4y2P4gQYeoAGGUQUjSgG6ALqGUQUjSgEAdjWwLh+tpFgAAAAASUVORK5CYII=") !important;
}
body > img[src][alt] {
box-shadow: 0px 0px 2px 1px navy;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment