答案 0 :(得分:0)
您可以将蓝色div
位置设置为relative
,然后将以下内容添加到测试类中:
.test{
position:absolute;
top:calc(50% - 38px); //76/2 = 38 to get the center of your span.
}
答案 1 :(得分:0)
您可以通过多种方式执行此操作:
div.div{
text-align: center;
}

<div class="div">
Hello world!
</div>
&#13;
div.div{
background-color: #00ff00
}
p.p{
text-align: center;
}
&#13;
<div class="div">
<p class="p">Hello World!</p>
</div>
&#13;
答案 2 :(得分:0)
我找到了答案。我需要简单地将文本底部垂直对齐添加到作为浅蓝色div的一部分的图像中。无论如何,谢谢你的答案!