html – 中心DIV内容流体垂直和水平

这是我的例子:

线高不适用于流体div.我的代码目前基于行高,但框的大小会发生变化.那么如何才能在完全中间的链接(内容)?

我想确保这个DIV中的内容总是从顶部和侧面同样居中.垂直和水平居中.

当前代码:(注意样式标记为空白,因为这是动态填充的)

<style type="text/css">
    .Box{
    width:468px; /* PHP changes this sometimes */
    height:60px; /* PHP changes this sometimes */
    background:#eee;
    text-align:
    center;
    border:
    1px solid rgb(177,172,171);
    line-height: 61px;
    }
    </style>

    <div style="" class="Box" id="">
<a style="color:#333;font-weight:bold" href="claimPrize();">Winner!</a>
</div>

解决方法

不久前进入类似的情况,做了一个搜索,发现了一篇关于css-tricks的绝对居中的文章,here文章和随之而来的测试它的小提琴.

CSS

/* This parent can be any width and height */
.block {
  text-align: center;
}

/* The ghost,nudged to maintain perfect centering */
.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; /* Adjusts for spacing */
}

/* The element to be centered,can
   also be of any width and height */
.centered {
  display: inline-block;
  vertical-align: middle;
  width: 300px;
}

HTML

<div class="block" style="height: 300px;">

    <div class="centered">
        <h1>Some text</h1>
        <p>But he stole up to us again,and suddenly clapping his hand on my shoulder,said&mdash;"Did ye see anything looking like men going towards that ship a while ago?"</p>
    </div>

</div>

<div class="block" style="height: 200px;">

    <div class="centered">
        <h1>Some text</h1>
        <p>But he stole up to us again,said&mdash;"Did ye see anything looking like men going towards that ship a while ago?"</p>
    </div>

</div>

<div class="block" style="height: 600px;">

    <div class="centered">
        <h1>Some text</h1>
        <p>But he stole up to us again,said&mdash;"Did ye see anything looking like men going towards that ship a while ago?"</p>
    </div>

</div>

演示

http://jsfiddle.net/andresilich/YqKMH/

相关文章

操作步骤 1、进入elasticsearch的plugin,进入ik。进入config。 2、在config下面建立以.dic为后缀的字典...
lengend data数据中若存在&#39;&#39;,则表示换行,用&#39;&#39;切割。
代码实现 option = { backgroundColor: &amp;#39;#080b30&amp;#39;, tooltip: { trigger: &...
问题原因 原因在于直接在js中取的变量并复制给var变量。 于是就变成这样。 解决办法 var data = &#...
前言 最近做了一个调查问卷导出的功能,需求是将维护的题目,答案,导出成word,参考了几种方案之后,选...
对于很多人来说,用字符编码都是熟能生巧,而不清楚为什么是那样的字符编码,所以我在这列了一个表,翻...