好的,这是div结构。
<div class="DivParent">
<a href="#">
<div class="DivWhichNeedToBeVerticallyAligned"></div>
</a>
</div>
DivParent具有固定的宽度和高度值,但DivWhichNeedToBeVerticallyAligned没有固定的高度值。
如果你进行DivParent显示:table-cell;你可以垂直对齐DivWhichNeedToBeVerticallyAligned,但我不想使用该功能,因为它会导致一些混乱。
href标签链接的大小应与divParent相同我的意思是整个divparent必须是可点击的。喜欢display:block。
所以有任何CSS方式的垂直对齐或轻量级jquery解决方案也会有所帮助。
谢谢。
此处jsfiddle :http://jsfiddle.net/XHK2Z/
*
答案 0 :(得分:43)
您可以使用额外的辅助工具在固定高度的块中实现垂直对齐。
看看这个:http://jsfiddle.net/kizu/7Fewx/
您必须在要对齐的区块附近有一个帮助程序:
.DivHelper {
display: inline-block;
vertical-align: middle;
height:100%;
}
并将display: inline-block; vertical-align: middle;
添加到.DivWhichNeedToBeVerticallyAligned
答案 1 :(得分:11)
如果不知道子div的高度,就无法使用CSS。
使用jQuery,你可以做这样的事情。
var parentHeight = $('#parent').height();
var childHeight = $('#child').height();
$('#child').css('margin-top', (parentHeight - childHeight) / 2);
答案 2 :(得分:3)
如果父母没有任何其他孩子。这将只是一个css“hack”
DivParent{line-height:100px /*the div actual height*/ }
.DivWhichNeedToBeVerticallyAligned{display:inline-block}
另一个黑客是
DivParent{height:100px; position:relative}
.DivWhichNeedToBeVerticallyAligned{height:20px; position:absolute; top:50%; margin-top:-10px;}
答案 3 :(得分:3)
此解决方案适用于包括IE 10及更高版本在内的现代浏览器。
<div class="parent">
<div class="child">Content here</div>
</div>
包括这个css
.parent {
height: 700px;
display: flex;
justify-content: center;
align-items: center;
}
.child {
width : 525px;
}
答案 4 :(得分:0)
我一直在使用以下解决方案(没有定位,没有table-cell / table-row,也没有行高),因为一年多来,它也适用于IE 7和8。
<style>
.outer {
font-size: 0;
width: 400px;
height: 400px;
background: orange;
text-align: center;
display: inline-block;
}
.outer .emptyDiv {
height: 100%;
background: orange;
visibility: collapse;
}
.outer .inner {
padding: 10px;
background: red;
font: bold 12px Arial;
}
.verticalCenter {
display: inline-block;
*display: inline;
zoom: 1;
vertical-align: middle;
}
</style>
<div class="outer">
<div class="emptyDiv verticalCenter"></div>
<div class="inner verticalCenter">
<p>Line 1</p>
<p>Line 2</p>
</div>
</div>
答案 5 :(得分:0)
以下是现代浏览器的另一种选择:
.child {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}