我是html转换的新手。现在我正在使用bootstrap,css和html将设计转换为完整的响应式网站。 在我的CSS中,我已经包含了类似的代码 CSS:
$country="India هىيهش Asia";
Preg_match_all("/([a-zA-z0-9]+)/", $country, $match);
Var_dump($match);
我面临的问题是第一个查询无效,任何人都可以帮我解决这个问题。
答案 0 :(得分:1)
如果我们在第二个查询之后放置它,第一个查询就会起作用。
@media screen and (max-width: 600px) {
body {
background-color: red;
color: white;
}
}
@media screen and (min-width: 320px) and (max-width: 414px) {
body {
background-color: yellow;
color: white;
}
}
答案 1 :(得分:0)
这里做错了以下代码会告诉你
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: lightgreen;
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
body {
background-color: yellow;
color: white;
}
}
@media screen and (max-width: 600px)and (min-width: 414px) {
body {
background-color: red;
color: white;
}
}
</style>
</head>
<body>
<p>resize width between 320px 414px change color yellow else less then 600px it will change red</p>
</body>
</html>
&#13;
答案 2 :(得分:0)
颠倒查询的顺序,重要的是你错过了&#34;和&#34;!