-
-
Save f4tihsahin/1424b87ecbf2f73f02933106fecc2038 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
| @media screen and (max-width: 900px){ | |
| /* Hassasiyeti daha çok artırdık */ | |
| .item-container{---> div öğelerinin sınıf kısmı | |
| width: 33.3333% ; | |
| } | |
| } | |
| @media screen and (max-width: 600px){ | |
| /*çözünürlük küçüldükçe ekrana sığdırdık*/ | |
| .item-container{---> div öğelerinin sınıf kısmı | |
| width: 100% ; | |
| } | |
| } | |
| @media screen and (max-width: 400px){ | |
| /*mobil için yarıya indirdik alt alta görünüm oluştu*/ | |
| .item-container{---> div öğelerinin sınıf kısmı | |
| width: 50% ; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment