Created
May 28, 2019 12:38
-
-
Save mennwebs/fbb4f2b0dc9a231d3300b4fb3dbe93b7 to your computer and use it in GitHub Desktop.
CSS สำหรับเปลี่ยนค่าตามขนาดหน้าจอต่างๆ โดยทำแบบ Mobile First คือเริ่มจากจอเล็กไปใหญ่
This file contains 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
// ใส่ CSS สำหรับแสดงผล Mobile เช่น | |
.test { | |
font-size: 12px; | |
} | |
@media (min-width: 768px) { | |
// โค้ด CSS สำหรับจอ iPad แนวตั้ง เช่น | |
.test { | |
font-size: 14px; | |
} | |
} | |
@media (min-width: 992px) { | |
// โค้ด CSS สำหรับจอ iPad แนวนอน เช่น | |
.test { | |
font-size: 16px; | |
} | |
} | |
@media (min-width: 1170px) { | |
// โค้ด CSS สำหรับจอคอมทั่วไป เช่น | |
.test { | |
font-size: 18px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment