N
N
nepster-web2014-10-20 12:35:08
css
nepster-web, 2014-10-20 12:35:08

Is it possible to use multiple identical @media in a css file?

I work with adaptive layout, everything adjusts for me like this:

/* ----------------------------------------------- */
@media (max-width: 639px) {


}


/* ----------------------------------------------- */
@media (min-width: 640px) and (max-width: 799px) {


}


/* ----------------------------------------------- */
@media (min-width: 800px) and (max-width: 999px) {
    
    
}


/* ----------------------------------------------- */
@media (min-width: 1000px) and (max-width: 1199px) {
    
    
}


/* ----------------------------------------------- */
@media (min-width: 1200px) {
    
    
}

However, there are many pages that need to be typed, I would not like to mix everything in 1 file and all pages in 1 media. Therefore, would it be correct to write these media for each page?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander, 2014-10-20
@nepster-web

If I understood the question correctly, then yes, it will not cause any problems.
You can see it for example in getbootstrap.com/dist/css/bootstrap.css

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question