我希望在瀏覽器中調整大小以及移動我的字體大小改變。如果我嘗試做它在PC此代碼的工作,但如果我打開我的網站在移動設備上不調整我的文字。如何設置媒體查詢,並使其工作在移動
我問爲什麼這個代碼不工作,沒怎麼寫。
HTML(關於樣式表;一個爲移動是 「handheld.css」):
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css" media="only screen and (min-width: 1121px)">
<link rel="stylesheet" type="text/css" href="handheld.css" media="only screen and (max-width:1120px)">
handheld.css:
@media only screen and (max-width:320px) {
#easy {
font-size: 24px;
}
h2{
font-size: 15px;
}
}
@media only screen and (min-width:321px) {
#easy {
font-size: 25px;
}
h2{
font-size: 16px;
}
}
@media only screen and (min-width:380px) {
#easy {
font-size: 26px;
}
h2{
font-size: 17px;
}
}
@media only screen and (min-width:420px) {
#easy {
font-size: 27px;
}
h2{
font-size: 18px;
}
}
#easy{
position: relative;
left: 40%;
font-family: "sweetness", Verdana;
top: -63%;
margin-left: 3px;
fontsize: calc(15px + 3vw);\\this is an alternative to media queries
}
h2{
position: relative;
color:#fff;
text-decoration: none;
font-family: "sweetness", Verdana;
text-shadow:
-0.5px -0.5px 0 #000,
0.5px -0.5px 0 #000,
-0.5px 0.5px 0 #000,
0.5px 0.5px 0 #000;
top: 40px;
fontsize: calc(15px + 2vw); \\this is an alternative to media queries
}
[媒體查詢?如何針對臺式機,平板電腦和移動]的可能的複製(http://stackoverflow.com/questions/6370690/media-queries-how -to-目標桌面平板電腦和移動設備) –
@n_palum我寫的代碼無法正常工作,而不是如何做到這一點! –
@NiccolòGuidi:這只是一個例子嗎?它沒有意義的1px的遞增字體大小... – deblocker