簡體   English   中英

Chrome 開發者工具沒有顯示響應

[英]Chrome Developer Tool is not showing responsiveness

我在 chrome 開發者工具上檢查我的網站的響應時遇到問題。 當我調整我的 chrome window 的大小時,它顯示出響應性

在下圖中,chrome window 寬度為 768px

調整窗口圖像大小

但是當我在 chrome 中使用Toggle Device Toolbar時,它不會顯示如下圖所示的響應能力。 寬度為 768 像素。

開發工具

我的index.html文件如下

<!DOCTYPE html>
<html>
<head>
    <title>Personal Site</title>
    <link rel="stylesheet" type="text/css" href="./styles/style.css">
    <link rel="stylesheet" type="text/css" href="./styles/tab.css">
    <link rel="stylesheet" type="text/css" href="./styles/mobile.css">
</head>
<body>
All the Code lies here
</body>
</html>

我的 CSS 文件如下

樣式.css

All the styles are here no media queries

選項卡.css

@media only screen and (max-width: 768px) and (min-width: 501px)
{
All the styles are here
}

手機.css

@media only screen and (max-width: 500px)
{
All the styles are here
}

您在腦海中缺少 Viewport 標簽,

將此添加到您的head標簽

<meta name="viewport" content="width=device-width, initial-scale=1.0">

請訪問此文檔以獲取更多信息

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM