无法在移动设备上修改文本字体大小



>我发现了一篇关于在特定div中专门为移动设备修改文本大小的帖子,如下所示:

@media only screen and (max-width: 480px) {
.news {
font-size: 5px;
}
}

但是,对于我弄乱的网站,我无法让它工作。我希望在移动设备上打开时字体大小更小。虽然我想知道我是否必须在 html 中设置一个视口元,但每次我这样做 A 时,它都不会修复它,B,它完全破坏了我网站的平衡,剪辑了大量信息,我真的不喜欢。因此,我现在能够使用视口的唯一方法是,如果它根本不会弄乱缩放系数。不确定这是否是问题所在。 非常感谢对此的任何帮助。完整代码:

.css:

*{
margin:0;
padding:0;
}
body{
text-align:center; /*For IE6 Shenanigans*/
font-size: 100%;
font-weight: 1;
font-family: 'rationale';
background:black;
}


#newsusa {
position: absolute; /*makes it relative to the html element, (the first           
positioned element).*/
width: 100%; /*makes the element 100%, to center it. */
left: 0px;
top: 200px;

}


.news {
color: white;
font-size: 18px;
}   

li {
list-style-type: none;
}

@media only screen and (max-width: 480px) {
.news {
font-size: 0.8em;!important;
}
}

@media only screen and (max-width: 280px) {
.news {
font-size: 0.8em;!important;
}
}

.xhtml:

<?php include 'global.php';?>
<html xmlns="http://www.w3.org/1999/xhtml">
<html lang="en">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="mobiletest.css">
<link href='//fonts.googleapis.com     
/css?family=Iceland|Rationale|Quantico|VT323|Dorsa' rel='stylesheet'      
type='text/css'>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3    
/jquery.min.js'></script>

<div id="newsusa">
<h1 class="appear-later">News</h1>
<div class="spacer1">
</div>
<div class="news">
<ul><?php outputValueFromCache('usnews', 'ignore'); ?></ul>
</div>

<div class="spacer2">
</div>
<h1 class="appear-later">Tech</h1>
<div class="spacer1">
</div>
<div class="news">
<ul><?php outputValueFromCache('usatechnews', 'ignore'); ?></ul>
</div>
<div class="spacer2">
</div>
<h1>Business</h1>
<div class="spacer1">
</div>
<div class="news">
<ul><?php outputValueFromCache('usamoneynews', 'ignore'); ?></ul>
</div>
</div>



</html>

您将需要添加

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

到您的标题。如果考虑以下代码:

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.page-header{
font-size: 16px;
color: red;
}
@media (max-width: 430px) {
.page-header{
font-size:100px;
color: green;
}
}
</style>
</head>
<body>
<h1 class="page-header">Hello</h1>
</body>
</html>

媒体查询仅在定义了视区元标记后才有效。我知道这可能不是你想听到的,但我认为这是你的解决方案。

相关内容

  • 没有找到相关文章

最新更新