I
I
Ivan Ukhov2016-10-19 09:09:36
Sass
Ivan Ukhov, 2016-10-19 09:09:36

How to write media queries in Sass?

Please tell me how to write media queries in a Sass file
, for example, this one:

@media screen (max-width: 1200px) {
    .block {
        width: 200px;
    }
}

(Considering that curly braces are not allowed.)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Max Medar, 2016-10-19
@Igooooood

@media screen and (max-width: 1200px)
  .block
    width: 200px

You forgot andafter screen.
PS Switch to scss syntax.

H
Hellarazor, 2016-10-19
@Hellarazor

@media screen (max-width: 1200px)
   .block 
      width: 200px

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question