Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.example {
  padding: 20px;
  color: white;
}
/* Очень маленькие устройства (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .example {background: red;}
}
/* Маленькие устройства (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .example {background: green;}
}
/* Средние устройства (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .example {background: blue;}
}
/* Большие устройства (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .example {background: orange;}
}
/* Экстра большие устройства (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .example {background: pink;}
}
</style>
</head>
<body>
<h2>Типичные точки останова (брэкпоинты) медиа-запроса</h2>
<p class="example">Измените размер окна браузера, чтобы увидеть, как изменяется цвет фона этого абзаца при разных размерах экрана.</p>
</body>
</html>