Jump to content
  • 0

подключить файл через медиа-запрос


cyklop77
 Share

Question

научите пожалуйста подключать определенный файл стилей в зависимости от фактической ширины экрана. следующий код работает


<style media="screen">@import "css/styles1.css";</style>
<style media="print">@import "css/styles2.css";</style>

но здесь проверяется тип принимающего устройства. мне же нужно при ширине экрана >1000px подключать css/styles1.css , при ширине экрана <1000px подключать css/styles2.css

Edited by cyklop77
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

это я читал уже. там объясняется как подключить один файл, в котором 2 секции - для<1000px и для >1000px в моем случае. мне же нужно подключить 2 отдельных файла

Edited by cyklop77
Link to comment
Share on other sites

  • 0

скажите пожалуйста допустимо ли таким образом подключать файлы стилей для 5 ширин экрана?


<head>
<meta charset="utf-8" />

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<title>Somara</title>

<!--<link rel="icon" href="favicon.ico" type="image/x-icon" />-->

<!--<link rel="stylesheet" href="css/styles.css" /> -->
<link rel="stylesheet" href="css/styles1.css" media="only all and (max-width : 480px)">
<link rel="stylesheet" href="css/styles2.css" media="only all and (max-width : 768px) and (min-width : 480px)">
<link rel="stylesheet" href="css/styles3.css" media="only all and (max-width : 992px) and (min-width : 768px)">
<link rel="stylesheet" href="css/styles4.css" media="only all and (max-width : 1382px) and (min-width : 992px)">
<link rel="stylesheet" href="css/styles5.css" media="only all and (min-width : 1382px)">

<!--[if lt IE 9]>
<link rel="stylesheet" href="css/styles3.css">
<![endif]-->
</head>

может быть для адаптивных макетов уже существуют устоявшиеся шаблоны и мой способ подключения не эффективен?

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