Skip to content

Instantly share code, notes, and snippets.

@mennwebs
Created May 28, 2019 12:38
Show Gist options
  • Save mennwebs/fbb4f2b0dc9a231d3300b4fb3dbe93b7 to your computer and use it in GitHub Desktop.
Save mennwebs/fbb4f2b0dc9a231d3300b4fb3dbe93b7 to your computer and use it in GitHub Desktop.
CSS สำหรับเปลี่ยนค่าตามขนาดหน้าจอต่างๆ โดยทำแบบ Mobile First คือเริ่มจากจอเล็กไปใหญ่
// ใส่ 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