Bootstrap Screen自动调整高度内容

时间:2015-08-31 05:13:54

标签: jquery html css twitter-bootstrap

我正在使用bootstrap并尝试将内容放在屏幕上(没有滚动条)并根据它自动调整。我尝试将html,body和container高度设置为100%并添加溢出但无法访问。例如,当某人使浏览器变小时,它将自动包含高度,目前宽度仅适用

RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.+)$ /index.php [L]

1 个答案:

答案 0 :(得分:3)

尝试添加高度:100vh;每个部分。像

<style>
.sectionHeight {
height:100vh;
}
</style>

<div class="row section2 sectionHeight">
                    <div class="col-xs-12 col-md-9 left"><img src="img/section2_bg.png" class="bg_image"></div>
                    <div class="col-xs-12 col-md-3 right">                          
                            <h4 class="header_title">Feature Two</h3>
                            <p><a class="link" href="#"><button class="f_button">Find out more</button></a></p> 
                    </div>
                </div>

------------------

等等