L
L
Light7772015-12-17 09:39:20
Yii
Light777, 2015-12-17 09:39:20

How to register css file properties in Yii2?

Hello!
Faced the problem of registering the media property of the css file
, there is such a usual html code

<link type="text/css" media="only screen and (min-width: 320px)" href="css/responsive.css" rel="stylesheet">

added to Asset - css/responsive.css
but I don't know where to insert the property media="only screen and (min-width: 320px)"
Where and how should the property be registered? In Asset or in the view itself?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrey Mokhov, 2015-12-17
@mokhovcom

in the CSS file itself

@media only screen and (min-width: 320px) {
/* все ваши стили */
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question