全屏弹出(CSS + HTML)

时间:2013-06-25 06:43:03

标签: html css dom web-applications

我在为我正在处理的网站创建全屏弹出窗口时遇到了一些麻烦。 布局需要如下:

enter image description here

头部和页脚都需要固定高度,身高会根据浏览器窗口的高度而缩小和缩小。

我该如何做到这一点?

编辑:我忘了提到中间部分需要溢出:滚动内容大于页面高度。

3 个答案:

答案 0 :(得分:4)

您可以使用box-sizing属性执行此操作。

像这样:

FIDDLE1 FIDDLE2

.container
{
    height: 100%;
    background: pink;
    margin: -64px 0;
    padding: 64px 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.content {
    overflow:auto;
    height:100%;
}
header
{
    height: 64px;
    background: purple;
    position: relative;
    z-index:1;
}
footer
{
    height: 64px;
    background: gray;
    position: relative;
    z-index:1;
}

答案 1 :(得分:2)

尝试使用此简单选项http://jsfiddle.net/jaisonje/mRBJj/并查看Scroll Bar sample here

<强> HTML:

<div class="header">Header</div>
<div class="content">Content</div>
<div class="footer">Footer</div>

<强> CSS:

 body, html { height:100%; }
.footer,.header{ position:absolute; top:0; height:50px; background-color:yellow; width:100%;}
.content{ position:absolute; top:50px; bottom:50px; background-color:red;width:100%;}
.footer{ bottom:0; top:auto;}

答案 2 :(得分:0)

在此网站上下载Bootstrap.css

http://twitter.github.io/bootstrap/index.html

CSS:

.modal {
        background-clip: padding-box;
        background-color: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 6px 6px 6px 6px;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
        left: 21.5%;
        margin-left: -280px;
        outline: medium none;
        position: fixed;
        top: 2%;
        width: 98%;
        z-index: 1050;
    }
    .modal-footer {
        background-color: #F5F5F5;
        border-radius: 0 0 6px 6px;
        border-top: 1px solid #DDDDDD;
        box-shadow: 0 1px 0 #FFFFFF inset;
        margin-bottom: 0;
        padding: 14px 15px 15px;
        text-align: left;
    }

HTML:

<div id="myModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>Modal body…</p>
</div>
<div class="modal-footer">
Modal Footer

</div>
</div>

脚本: 在bootstrap网站上下载Javascript http://twitter.github.io/bootstrap/index.html

<script type="text/javascript" src="bootstrap.min.js"></script>
<script type="text/javascript" src="jquery-1.7.js"></script>

在您的网页上添加此脚本

<script type="text/javascript">
$('#myModal').modal('show')
</script>