📱

Responsive Breakpoints

Trình tạo breakpoint đáp ứng trực tuyến miễn phí. Tạo media query CSS cho di động, máy tính bảng và máy tính. Tùy chỉnh breakpoint và sao chép mã.

/* mobile */
@media (max-width: 767px) {
  /* styles */
}

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  /* styles */
}

/* desktop */
@media (min-width: 1024px) and (max-width: 1279px) {
  /* styles */
}

/* large-desktop */
@media (min-width: 1280px) {
  /* styles */
}