移动设备的CSS然后转换为平板电脑,桌面和更大的桌面

时间:2015-01-19 03:17:06

标签: mobile size media desktop tablet

我开始为移动设备(iPhone 5c)编码,然后在我的媒体查询部分,我将更多代码应用于更大尺寸:平板电脑(768px),桌面(1024px)和更大的桌面(1200px )。

当我为移动部分编码时,我正在缩小我自己桌面上的窗口宽度(使用谷歌浏览器),以便在编码时尽可能地缩小。但是,当我看到插入了我的URL的手机和iOS模拟器时,它显示为平板电脑版本。它不应该在手机上具有“红色”背景颜色,仅在平板电脑上。

基本上:移动 - 不是红色。平板电脑 - 红色

当我将它插入手机时,它应该是红色的,当它不应该是。它看起来像平板电脑版。

如果有人能帮助我,我会非常感激!

以下是我的网址:alyssamroth.com/responsive01.html

到目前为止,这是我的代码:

html {
    background-color: #e9e9e9;
}

body {
    font-family: "aktiv-grotesk-std",sans-serif;
    margin: 0 auto;
    width: 100%;
}

#wrapper {
    margin: 0 auto;
    overflow: hidden;
}

/*=================== HEADER======================== */


nav {
    height: 100px;
    background-color: #e54f26;
    /*padding: 0 0px 0 0px;*/
}

nav #logo {
    margin-left: 20px;
    margin-top: 20px;
}

nav #contactIcon {
    margin-right: 20px;
    margin-top: 35px;
    float: right;
}

header #mountains {
    width: 100%;
    height: 350px;
    background-image: url(../img/mountain.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 40px;
    margin-top: 0px


}

header h1 {
    color: white;
    font-size: 2.7em;
    margin-left: 55px;
    padding-top: 150px;
    font-family: "aktiv-grotesk-std", sans-serif;
    font-weight: 900;
    font-style: normal;
}

header h2 {
    padding-top: 2px;
    letter-spacing: 15px;
    color: #a7a8ad;
    font-size: 2.1em;
    margin-left: 100px;
    font-family: "aktiv-grotesk-std", sans-serif;
    font-weight: 300;
    font-style: normal;
    padding-bottom: 200px;
}


/* ========== CONTENT ============= */


article h3 {

    font-size: 1.8em;
    color: #101626;
    margin-left: 20px;
    margin-bottom: 20px;
    font-family: "aktiv-grotesk-std", sans-serif;
    font-weight: 200;
    font-style: normal;

}


p {

    margin-left: 20px;
    font-size: 1.2em;
    margin-right: 20px;
    color: #101626;
    line-height: 30px;
    font-family: "aktiv-grotesk-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 20px
}

aside #ipad {
    padding-top: 76px;
}

aside #desktop {
    padding-top: 82px;
}

aside #phone {
    padding-top: 82px;
}

/* =============== Media Query for Tablets ===============*/
@media only screen and (min-width: 768px) {

body {
    background-color: red

}


/* =============== Media Query for Desktops ===============*/
@media only screen and (min-width: 1024px) {

}


/* =============== Media Query for Large Desktops ===============*/
@media only screen and (min-width: 1200px) {

1 个答案:

答案 0 :(得分:0)

这就是我所看到的,请看我的截图: 手机 - 不是红色 平板电脑 - 红色

enter image description here

enter image description here