Created
April 15, 2012 15:33
-
-
Save Griever/2393448 to your computer and use it in GitHub Desktop.
画像の背景を市松模様にするCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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