Align div vertically within parent div?
This question already has an answer here:
Try:
.caption{
position: relative;
top: 50%;
transform: translateY(-50%);
}
Source: http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/
链接地址: http://www.djcxy.com/p/75876.html上一篇: 将div与红色边框水平对齐
下一篇: 在父div中垂直对齐div?