当我调整屏幕大小时,CSS样式会发生变化

时间:2014-04-20 18:35:02

标签: html css

我在WordPress开发网站上创建了一个功能框,其中包含一些帮助。我希望这个功能盒能够响应,因此它在移动设备上看起来很不错。

它几乎正常工作,但当我缩小屏幕尺寸时,my site功能框上的红色条带消失,我的列表样式从图片变为另一种样式。

我该如何解决这个问题?

.featured-box {
  border-radius: 20px;
    background-color: #000;
    color: #fff;
    padding: 20px;
    margin: 0 auto;
    margin-top: 10px;
    overflow: visible;
    width: auto;    
    max-width: 1160px; 
}

.featured-box h4 {
    font-size: 20px;
    color: #fff;

}

.myimage {

    float:right;
}

.featured-box p {
    padding: 0 0 20px;
}

.featured-box ul {
    margin: 0 0 20px;
}

.featured-box ul li {
    list-style-type: disc;
    margin: 0 0 0 30px;
    padding: 0;
    align: right;
}

.featured-box .enews p {
    padding: 10 10 10 10px;
    color: #fff;
    float: left;
    width: 220 px;
    margin: 10 10 10 10px;

}

.featured-box .enews #subscribe {
    padding: 20 20 20 20px;;

}

.featured-box .enews #subbox {
    background-color: #fff;
    margin: 0;
    width: 300px;

}

.featured-box .enews .myimage {

      float: right;
      margin-left: 10px;
      margin-right: 50px;
       width: auto;
}

section.enews-widget {
   overflow: hidden;
}


.featured-box .enews input[type="submit"] { 
background-color: #d60000;
     padding: 10 10 10 10px;
     width: 150px;

}



@media screen and (min-width: 1024px) and (max-width: 1139px) {
    div.featured-box {
        margin-top: 135px;

    }
}

@media screen and (min-width: 1140px) {
    div.featured-box {
        margin-top: 70px;
    }

@media only screen and (max-width: 767px) {
 section.enews-widget {
   clear: both;
 }
 .myimage {
   float: none;
 }
 .myimage img {
   display: block;
   height: auto;
   margin: 0 auto;
 }


}

#text-4 > div:nth-child(1) > h4:nth-child(1) {
            color: #fff;
            font-size: 1.3em; font-weight: normal;
            text-transform: uppercase;
            background-color: #d60000; 
            position: relative;
            margin: 0px -60px 20px -20px;
            padding: 18px 0px 16px 20px;

}

#text-4 > div:nth-child(1) > h4:nth-child(1):after {
                content: '';
                display: block; height: 40px; width: 40px;
                background: url(http://bryancollins.eu/wp/wp-content/uploads/2014/04/fold.png) no-repeat 0 0; 
                position: absolute; right: 0px; bottom: -40px;

}

.page p { line-height: 1.2em; }
.page a { color: #1badd2; text-decoration: none; }
.widget li  { 

                margin: 0;  
                padding: 2px 0px 8px 35px; 
                display: inline; position: relative; 
                border-bottom: none;

            }


.featured-box .widget li {
                list-style: none;
                background: url("http://bryancollins.eu/wp/wp-content/uploads/2014/04/arrow.png") no-repeat scroll 0 10px rgba(0, 0, 0, 0);
                display: inline;
                margin: 0 0 0 30px;
                padding: 0 0 0 40px;
}

下面的HTML:

        <div class="widget-wrap"></div>
    </section>
    <section id="enews-ext-3" class="widget enews-widget">
        <div class="widget-wrap">
            <div class="enews">
                <h4 class="widget-title widgettitle">

                    33 Creative Strategies for your next writing proje…

                </h4>
                <p>

                    Lorem ipsum dolor sit amet, consectetur adipiscing…

                </p>
                <div class="arrows">
                    <ul>
                        <li>

                            List item 1

                        </li>
                        <li>

                            List item 2

                        </li>
                        <li>

                            List item 3

                        </li>
                    </ul>
                </div>
                <p>

                    Tuo vero id quidem, inquam, arbitratu. Illud mihi …

                </p>
                <form id="subscribe" name="33 Creative Strategies for your next writing project" onsubmit="if ( subbox1.value == 'First Name') { subbox1.value = ''; } if ( subbox2.value == 'Last Name') { subbox2.value = ''; }" target="_blank" method="post" action="<!-- Begin MailChimp Signup Form --> <div id="mc_embed_signu…s="button"></div> </form> </div> <!--End mc_embed_signup-->">
                    <label class="screenread" for="subbox">

                        E-Mail Address

                    </label>
                    <input id="subbox" type="email" required="required" name="" onblur="if ( this.value == '' ) { this.value = 'E-Mail Address'; }" onfocus="if ( this.value == 'E-Mail Address') { this.value = ''; }" value="E-Mail Address"></input>
                    <input id="subbutton" type="submit" value="Subscribe"></input>
                </form>
            </div>
        </div>
    </section>

2 个答案:

答案 0 :(得分:1)

您使用媒体查询的方式实际上没有任何逻辑错误 - 问题实际上是一个小问题。在格式化&#34; style.css&#34;中的<h4><li>元素的相关样式上方几行,您将找到以下代码行:

@media screen and (min-width: 1140px) {
    div.featured-box {
        margin-top: 70px;
    }

请注意没有关闭支撑(我没有意外地将其留下)。这个小小的遗漏导致媒体查询下面的所有样式都包含在其中,因此它们仅在屏幕宽度为1140px或更大时出现。添加右括号似乎会使其按预期运行。

通过验证程序运行CSS可以帮助您解决问题。我尝试使用这个W3 CSS validator,它在未闭合的媒体查询下面指出了一个解析错误(这是有道理的,因为你无法嵌套媒体查询)。

希望这有帮助!如果您有任何疑问,请告诉我。

答案 1 :(得分:0)

关于Css的一点是使用“px”和“%”

之间的区别

移动网页。 %的摇滚。因为它(显然)会适应。

但是,如果您想要一个固定的宽度,例如您希望以某种方式显示的文章,那么px就是赢家。

因此,您的网页在移动设备中运行良好..将px替换为%

为了最好避免使用px,请使用%