Çok merak ettim, çokta hevesliyim
10
●8.617
Bunun yanı sıra mevcut ekran boyutları bulunmaktadır.
Klasik bir blog teması ise siteyi %100'e uyarlar geçersin ve tüm sistemlerde oturur geçer. Sadece telefonlar için farklı bir kodlama yazarsın. Büyük siteler içinse her alete göre farklı bir css kodlarsın. Umarım anlatabilmişimdir.
başka işine yarayan olursa kullanabilir 
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
/* CSS KODLARI BURAYA */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
/* CSS KODLARI BURAYA */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
/* CSS KODLARI BURAYA */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
/* CSS KODLARI BURAYA */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
/* CSS KODLARI BURAYA */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
/* CSS KODLARI BURAYA */
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
/* CSS KODLARI BURAYA */
}
/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
/* CSS KODLARI BURAYA */
}
/* iPhone 5 (portrait & landscape)----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) {
/* CSS KODLARI BURAYA */
}
/* iPhone 5 (landscape)----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
/* CSS KODLARI BURAYA */
}
/* iPhone 5 (portrait)----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) {
/* CSS KODLARI BURAYA */
} @media only screen and (max-width: 320px) {}
@media only screen and (min-width: 320px) and (max-width: 480px) {}
@media only screen and (min-width: 480px) and (max-width: 768px) {}
@media only screen and (min-width: 768px) and (max-width: 1024px) {}