@media (min-width: 768px) { ... } áp dụng styles khi viewport >= 768px.
- Có thể kết hợp:
@media (min-width: 768px) and (max-width: 1024px). - Breakpoints phổ biến: 640, 768, 1024, 1280px.
@media (min-width: 768px) { ... } applies styles when the viewport is >= 768px.
- Can be combined:
@media (min-width: 768px) and (max-width: 1024px). - Common breakpoints: 640, 768, 1024, 1280px.