将内容区域垂直居中,直到达到一定高度?

时间:2013-11-14 09:04:28

标签: javascript jquery html css responsive-design

如何允许动态(更改高度)内容区域在用户屏幕上垂直居中(无论屏幕大小如何),直到它到达只剩下100px个可用空间的点。页面顶部?

这是一张图: enter image description here

我不完全确定此问题的解决方案是仅使用CSS还是javascript - 所以欢迎所有建议。

8 个答案:

答案 0 :(得分:8)

我的解决方案考虑到您希望您的内容集中在整个页面上,而不仅仅是“在下方空间”。我使用负边距来实现这一目标。

请参阅此处的工作示例:

http://jsfiddle.net/WkQzw/5/

HTML:

<div id="container">
    <div id="table">
        <div id="cell">
            <div id="content">Some content</div>
        </div>
    </div>
</div>

CSS:

#container {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    margin-top: -100px;
}
#table {
    display: table;
    width: 100%;
    height: 100%;
    margin-top: 100px;
}
#cell {
    display: table-cell;
    vertical-align: middle;
}
#content {
    background-color: lightblue;
    width: 50%;
    margin: 0 auto;
}

测试:

  • IE 9 Win7 - &gt; WORKS
  • Chrome 30 Mac - &gt; WORKS
  • Safari 7 Mac - &gt; WORKS
  • Firefox 25 Mac - &gt; WORKS

更新

我使用box-sizing: boder-box;,但Firefox需要额外的-moz-box-sizing: border-box;。现在它也适用于Firefox。

答案 1 :(得分:3)

纯CSS,缩减HTML

这基于ToniTornado's answer,但需要的包装更少。

See fiddle demo

<强> HTML

<div id="container">
      <div id="content">Some content</div>
</div>

CSS(垂直定位的最小值)

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: table;
    padding-top: 100px;
    margin-top: -100px;
}

#container {
    display: table-cell;
    vertical-align: middle;
    padding-top: 100px;
}

可选垂直居中于顶部区域

As the above fiddle showed,上面的css将#content置于屏幕空间的中心位置。 如果您希望以顶部区域下方的空间为中心 ,请通过删除负上边距和body来调整#container删除其顶部填充 like this fiddle ,此css显示:

body {
    display: table;
    padding-top: 100px;
}

#container {
    display: table-cell;
    vertical-align: middle;
}

答案 2 :(得分:1)

虽然需要额外的.wrapper,但这种布局可以与display: table;和朋友一起使用:

HTML

<div class="container">
    <div class="top">some space</div>
    <div class="wrapper">
        <div class="content">
            <div style="height: [any height]">centered content</div>
        </div>
    </div>
</div>

CSS

.container {
    display: table;
    width: 100%;
    height: 100%;
}
.top {
    height: 100px;
    display: table-row;
}
.wrapper {
    /* this will take up remaining height (or stretch to content) */
    display: table-row;
}
.content {
    /* because this is displayed as a table cell, the vertical align centers
     * its content (instead of how it usually works on inline elements) */
    display: table-cell;
    vertical-align: middle;
}

http://jsfiddle.net/gLECE/3/

更新

以上内容将介于 top 100px和bottom 之间的内容,而不是 viewport top和bottom 之间的内容(使用css执行此操作的一种hacky方式是{{ 3}}但是ToniTornado的答案是一个可靠的解决方案)

@ TCHdvlp的尝试很接近,但缺少一些必要的部分(缺少顶部空间,实际上并不完全居中)。

TCHdvlp脚本的编辑版本:

var height = $(document.body).height();
$(".dca").each(function(){
    if(($(this).height()+100) < height){
        $(this).css({top: '50%', marginTop: - $(this).height() / 2 });
    }
});

http://jsfiddle.net/gLECE/6/

注意:您可能不仅要在页面加载时执行此操作,还要在调整窗口大小时执行此操作。

答案 3 :(得分:1)

无表格但基于javascript的解决方案(只是为了增加多样性)

HTML

<div id="container">
    <div id="topbar">You can't touch me</div>
    <div id="content">Aliquam erat volutpat...</div>
</div>

CSS

div#topbar {
    border: 2px dashed red;
    height: 50px;
    text-align: center;
}
div#content {
    background: #90c0ff;
    width: 260px;
    margin: 0px auto;
    position: relative;
}

的Javascript

var content = document.getElementById('content');
var topMargin = (window.innerHeight - document.getElementById('topbar').offsetHeight - content.offsetHeight) / 2;
if (topMargin < 0) {
    topMargin = 0;
}
content.style.top = topMargin + 'px';

http://jsfiddle.net/SD7SA/

答案 4 :(得分:0)

有趣的问题!我没有看到任何可以实现此目的的css属性。但是,也许它存在。您可以尝试以这种方式使用css和javascript。使用css position:relative和js设置顶部。当DCA.height()+ 100&lt; = container.height时,将DCA设置为顶部(container.height - DCA.height)。否则,top为0,因此DCA将附加到容器的top,假设容器从“Content not not this height”行开始。让我尝试一下jsfiddle并编辑我的帖子。

这是:

http://jsfiddle.net/TCHdevlp/gLECE/

答案 5 :(得分:0)

没有JS是可能的,但它肯定会很难,可能你需要使用很多CSS代码,这与旧的(&lt; 9)IE版本不兼容。

概念如下:

  1. 水平放置外部div 垂直居中(确实如此) 如果你身体的高度没有固定的话,那很难。
  2. 给他一个最高身高:100%
  3. 在此div中创建一个垂直对齐顶部的内部div。
  4. 如果你愿意,我可以在jsfiddle中为你做这个。

答案 6 :(得分:0)

纯CSS,不使用表格

另一种解决方法是使用CSS Grids。通过align-items属性,您可以轻松地垂直对齐网格内容,当内容超出单元格时又可以恢复为正常对齐。

一个例子:

function removeParagraph() {
  
  const p = document.querySelector('p')
  
  if (p)
    p.parentNode.removeChild(p)
    
}

function addParagraph () {

  const p = document.createElement('p')
  
  p.textContent = 'Bacon ipsum dolor sit amet drumstick rump swine capicola pastrami boudin t-bone, ground round filet mignon andouille frankfurter meatloaf.'
  
  document.querySelector('#content').appendChild(p)

}
html, body {
    
  height: 100%;
  
  margin: 0;
  padding: 0;
    
}

#wrapper {
  
  height: 100%;
  
  display: grid;
    
  grid-template-rows: 50px 1fr;
    
  align-items: center;
  
}

#space {
  
  height: 50px;
  width: 100%;
  
  border-bottom: 2px dashed red;
  
  color: red;
  
  text-align: center;
  
  line-height: 50px;
  
}

#content {
  
  width: 80%;
  
  background-color: lightblue;
  
  margin: 0 auto;

}

p {
  
  padding: 10px;
  margin: 0;

}
<section id="wrapper">
  <div id="space">
     <button onclick="removeParagraph()">remove paragraph</button>
     <button onclick="addParagraph()">add paragraph</button>
  </div>
  <div id="content">
    <p>Bacon ipsum dolor sit amet drumstick rump swine capicola pastrami boudin t-bone, ground round filet mignon andouille frankfurter meatloaf.
    </p>
  </div>
</section>

在上面的示例中,我使用Javascript允许您添加/删除段落,以便您可以看到增加内容的影响。这仍然是该问题的纯CSS解决方案。

pretty good是对CSS网格的支持,具体取决于您的受众。

答案 7 :(得分:-4)

确保您已使用<!DOCTYPE html>

启用了html5声明

此后,使用<center style="width:100%;"></center>标记集中您的元素。

上面标签中的任何元素都将是集中式和响应式的。