我正在尝试将 div 100px x 100px 内的文本垂直对齐。问题是当我将它的字体大小设置得更大时,它不尊重行高。
进行另一个测试,但使用不同的字体大小(12px)可以工作。
我该如何解决这个问题以及为什么会发生这种情况?
更大的字体大小:http: //jsfiddle.net/2sLNy/1/
小字体:http: //jsfiddle.net/2sLNy/2/
更大的字体大小代码:
div{
position: relative;
width: 100px;
height: 100px;
background-color: #DDD;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
text-align: center;
line-height: 100px;
}
div:hover:before{
opacity: 1;
}
div:before{
opacity: 0;
position: absolute;
width: 100px;
height: 100px;
display: block;
text-align: center;
font-size: 12px;
color: #FFF;
content: " + ";
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
line-height: 100px;
}
谢谢!