1

我正在尝试学习响应式设计。我正在建立一个网站,其中一个页面是一个投资组合。我设置了以下如何布置此页面的模型。当然,这是一个非常精简的版本。我似乎无法应用正确的查询,以便这种格式在宽屏桌面、ipad 和手机上看起来没问题。我开始了第一个查询,但它当然不起作用,并且还知道这是否是普通宽屏桌面的最佳尺寸。

任何人都可以让我开始如何将其应用于此页面吗?我将继续学习教程,但需要从这里开始。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<style type="text/css">
@media screen and (max-width:1080px) {
    #main {
        width: 960px;
    }
}
body {
    background-color: #FFF;
    margin:0;
}

#main {
    width: 1080px;
    margin-right: auto;
    margin-left: auto;
    height: 860px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.box {
    background-color: #CCC;
    height: 200px;
    width: 200px;
    margin-right: 20px;
    float: left;
    margin-bottom: 20px;
}
.box_last {
    background-color: #CCC;
    height: 200px;
    width: 200px;
    float: left;
    margin-bottom:20px;
}
.box_bottom {
    background-color: #CCC;
    height: 200px;
    width: 200px;
    margin-right: 20px;
    float: left;

}
.box_last_bottom {
        background-color: #CCC;
    height: 200px;
    width: 200px;
    float: left;

}
</style>
</head>

<body>
<div id="main">
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box_last"></div>

  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box_last"></div>

  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box_last"></div>

  <div class="box_bottom"></div>
  <div class="box_bottom"></div>
  <div class="box_bottom"></div>
  <div class="box_bottom"></div>
  <div class="box_last_bottom"></div>
</div>
</body>
</html>
4

1 回答 1

1

在您当前的代码中,#main来自媒体查询块的内容将被覆盖。您必须将媒体查询放在 CSS 的最底部

#main {
    width: 1080px;
    ...
}

@media screen and (max-width:1080px) {
    #main {
        width: 960px;
    }

    .box {
        width: 200px;
        ...
    }
}

然后是更小的屏幕

@media screen and (max-width: 480px) {
    #main {
        width: 100%;
    }

    .box {
        width: 50%;
        ...
    }
}
于 2012-11-16T20:16:22.400 回答