注意了,現(xiàn)在的谷歌不兼容響應(yīng)式布局的
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./index.css" media="only screen and (max-width:480px)"/>
<style type="text/css">
@media screen and (min-width: 490px) {
body {background: blue;}
}
</style>
</head>
<body>
</body>
</html>
換成IE或者火狐,Edge可以
2020-07-27
你的 meta 貌似少設(shè)置了點東西:
??<meta?name="viewport"?content="width=device-width,?initial-scale=1.0">