Created
July 31, 2015 06:40
-
-
Save dongyuwei/841f0e8b1d9672688ca2 to your computer and use it in GitHub Desktop.
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>CSS responsive images</title> | |
| <style> | |
| @media (min-width:640px) { | |
| .img-box img{ | |
| width: 0; | |
| height: 0; | |
| position: relative; | |
| } | |
| .img-box:after{ /* or .img-box:before */ | |
| position: absolute; | |
| z-index: 1; | |
| content: url(http://127.0.0.1:5000/blob/1:32:284bde13-efe9-4339-9f24-072582b639de); | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class='img-box'> | |
| <img src="http://127.0.0.1:5000/blob/1:20:38d5633c-a402-487b-bc57-5a1e2b895891"> | |
| </div> | |
| </body> | |
| </html> |
Author
dongyuwei
commented
Jul 31, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment