嗨,我在我的应用程序中使用媒体查询来使网页响应。我以前从未使用过这个。我在我的 CSS 中使用媒体查询,如下所示:
@media screen and (min-width: 70em) {
div.MoreInfoterms {
width: 800px;
margin-right: 250px;
margin-left: 55px;
margin-top: 20px;
border: 1px solid #cecece;
background-color: #f7f9f9;
max-height: 700px;
margin-bottom: 20px;
}
}
这是我的 HTML:
<div class="MoreInfoterms">
<ul>
<li> <p> This App has no minimum term.</p> </li>
<li> <p>This App has no minimum term.</p> </li>
<li> <p>This App has no minimum term..</p> </li>
</ul>
</div>
http://jsfiddle.net/isherwood/LBuTj
在这两种情况下,当我最小化浏览器和媒体查询开始生效时,我只能看到没有样式的内容。那么有人可以帮助我吗?