Skip to content

Instantly share code, notes, and snippets.

@f4tihsahin
Forked from nisabengisu/responsive
Created January 7, 2020 00:37
Show Gist options
  • Save f4tihsahin/1424b87ecbf2f73f02933106fecc2038 to your computer and use it in GitHub Desktop.
Save f4tihsahin/1424b87ecbf2f73f02933106fecc2038 to your computer and use it in GitHub Desktop.
@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