Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css @媒体屏幕:视口还是窗口大小?_Css - Fatal编程技术网

Css @媒体屏幕:视口还是窗口大小?

Css @媒体屏幕:视口还是窗口大小?,css,Css,你好 我有些困惑,可能是因为我有一段时间没有使用媒体查询: 使用时 @media screen and (max-width:1024px){ } 它是指视口大小(页面的可查看部分)还是窗口大小(包括滚动条等) 谢谢它指的是视口的宽度: 这可能会对您有所帮助。可能的副本 @media screen html{ width: 1024px; }

你好

我有些困惑,可能是因为我有一段时间没有使用媒体查询:

使用时

@media screen and (max-width:1024px){

}
它是指视口大小(页面的可查看部分)还是窗口大小(包括滚动条等)


谢谢

它指的是视口的宽度:

这可能会对您有所帮助。

可能的副本
@media screen

html{
width: 1024px;
}