我正在關注Lynda.com YouTube上的其中一個視頻以製作響應式設計網頁。總之,我有2個CSS文件,一個用於標準全局風格,另一個用於較大尺寸的屏幕。HTML5 HTML5響應式網頁設計
<!Doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale = 1.0"/>
<title> Lynda.com | Creating a Responsive Web Design</title>
<link rel="stylesheet" type="text/css" href="first.css" />
<link rel="stylesheet" type="text/css" href="firstLarge.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width:50px) and (max-depth:500px)" href ="firstSmall.css" />
<link rel="stylesheet" type="text/css" media="only screen and (min-width:501px) and (max-depth:800px)" href ="firstMedium.css" />
<!--[if lt IE 9]>
<script src - src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
這是我的html文件的開始。所以我關心和困惑的部分是第二個鏈接rel行。當我擴展我的Chrome瀏覽器時,「firstLarge.css」中沒有任何內容適用。就好像CSS甚至不存在。
我只是有點困惑,如何得到這個工作。任何類型的幫助將不勝感激。謝謝。
沒有看到這些文件包含什麼,幾乎不可能說什麼。 – JJJ
...什麼是最大深度? – AA2992
@AnkithAmtange哎呀謝謝你的發現。它應該是寬度以及謝謝你! –