jQuery vertical align middle移动整个div

时间:2014-10-04 19:10:29

标签: jquery html css vertical-alignment

当使用jQuery垂直对齐div中的文本时,整个div移动。文本与其他div垂直对齐,但仍然在它所在的div的顶部对齐。我怎么能阻止它这样做呢?

这是一个小伙伴:http://jsfiddle.net/gvwzdjas/

可悲的是,小提琴并没有准确地显示正在发生的事情。我不确定另一种表现方式......

以下是我使用的HTML。

         <div class="grid grid-pad">
            <div class="col-1-3">
                <div class="content">
                  <h3>
                     TEXT HERE
                  </h3>
                </div>
            </div>
            <div class="col-1-3">
                <div class="content">
                    <h3>
                      TEXT HERE
                    </h3>
                </div>
            </div>
            <div class="col-1-3">
                <div class="content">
                    <h3>
                      TEXT HERE
                    </h3>
                </div>
            </div>
        </div>

这是我使用的jQuery。

<script>
  (function ($) {
    // VERTICALLY ALIGN FUNCTION
    $.fn.vAlign = function() {
      return this.each(function(i){
        var ah = $(this).height();
        var ph = $(this).parent().height();
        var mh = Math.ceil((ph-ah) / 2);
        $(this).css('margin-top', mh);
      });
    };
  })(jQuery);
  $('#item').vAlign();
</script>

这是我使用

的CSS
*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

[class*='col-'] {
float: left;
padding-right: 20px; /* column-space */
}

.grid {
width: 100%;
max-width: 1140px;
min-width: 755px;
margin: 0 auto;
overflow: hidden;
}

.grid:after {
content: "";
display: table;
clear: both;
}

.grid-pad {
padding-top: 10px;
padding-left: 20px; /* grid-space to left */
padding-right: 0px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.col-1-3, .col-4-12 {
width: 33.33%;
}

.content {
height:250px;
background-color:#fff;
text-align:center;
}

3 个答案:

答案 0 :(得分:0)

在没有jquery设置的情况下仅在css中使用

  .content {
height:250px;
position:relative;
background-color:#fff;
text-align:center;
}
.content h3{
position:absolute;
top:50%;
left:50%;
}

或者在jquery选项css

中设置此样式

答案 1 :(得分:0)

您可以使用css中的flex属性垂直对齐内容,而不是使用脚本。

<强> DEMO

<强> CSS:

.content {
    display: flex;
    justify-content: center;        /* align horizontal */
    align-items: center;        /*ALIGN VERTICAL*/
    height:250px;
    background-color:#fff;
    text-align:center;
}

答案 2 :(得分:0)

$('#item').vAlign(); 您的html中没有#item

尝试

h3{
    position: relative;
}

(function ($) {
          // VERTICALLY ALIGN FUNCTION
          $.fn.vAlign = function () {
              return this.each(function (i) {
                  var ah = $(this).height();
                  var ph = $(this).parent().height();
                  var mh = Math.ceil((ph - ah) / 2);
                  $(this).css('top', mh);
              });
          };
      })(jQuery);
      $('h3').vAlign();

看看jsfiddle