Jump to content
  • 0

import в медиазапросе


Ubhra
 Share

Question

Добрый день.

Подскажите пожалуйста почему вложенный в медиазапрос импорт не работает и можно ли его заставить работать?

@media screen and (min-width:360px) and (max-width:399px){
    body{
        width:360px;
    }
    header{
        display:none;
    }
    @import url("preview300.css");
    .note,.comment_block{
        width:340px;
    }
}

 

По идее это нужно что бы не писать одно и то же по нескольку раз.

Конечно можно использовать переменные:

:root{
	--preview300:;
	--preview350:;
}

Но это еще более мутно и вроде как широко не поддерживается на данный момент.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Вроде @import должен идти перед всеми блоками правил, то есть в начале css файла.

https://webref.ru/css/import (первый абзац)

Единственное ,можно так сделать, но опять же подключать в начале файла

@import url("preview300.css") (min-width: 360px) and (max-width: 399px);

 

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy