Created
August 8, 2017 12:08
-
-
Save domantasg/a01da889d7a97e281c856dd32cade864 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
| /* GOOD WIDTH */ | |
| .inline-text-box { | |
| width: 50%; | |
| } | |
| /* BAD WIDTH */ | |
| .inline-text-box { | |
| width: 800px; | |
| } | |
| /* GOOD IMAGE */ | |
| img { | |
| max-width: 100%; | |
| height: auto | |
| } | |
| /* BAD IMAGE */ | |
| img { | |
| width: 100%; | |
| height: auto; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment