.container height自动不适应内容

时间:2016-11-07 04:57:49

标签: css

this page,在Chrome浏览器的480px视口中,我想设置:

#header.boxed .container {
    height: auto;
}

而不是:

#header.boxed .container {
    height: 186px;
}

当我这样做时,#header.boxed .container不如我需要的那么高。

如何确保#header.boxed .container足够高以显示其内容?

感谢。

1 个答案:

答案 0 :(得分:0)

要实现此目的,您需要在480px view-port css

中进行一些更改
#top .logo {
    /*background-image: url("//test.doig.com.au/magnifique/wp-content/uploads/sites/8/2016/10/bg-header.jpg");
    background-repeat: no-repeat;*/
    clear: both;
    padding: 10px 0;
    top: 0;
}


#header #searchform {
    float: right;
    /*position: absolute;
    right: 0;
    top: 63px;*/
    width: 220px;
}

.social_bookmarks {
    border: medium none;
    display: block;
    float: left;
    height: 24px;
    list-style-position: outside;
    list-style-type: none;
    /*position: absolute;
    right: 231px;*/
    top: auto;
}

希望它适合你:)