Android標準ブラウザで背景画像が表示されない
This file contains 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
//Android標準ブラウザで背景画像が表示されない | |
h2 { | |
background: url(image.jpg) repeat-x; | |
background-size: auto 40px; | |
-webkit-background-size: auto 40px; /* Safari,Google Chrome用 */ | |
-moz-background-size: auto 40px; /* Firefox用 */ | |
-o-background-size: auto 40px; /* Opera用 */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment