我有一个带有这些属性的div:
.tourcontainer {
position:fixed;
top:0px;
padding:200px;
z-index:20;
color:white;
}
我有挑战,div的内容是流畅的,所以我不知道如何使它垂直对齐,无论div的高度如何。
答案 0 :(得分:0)
.div{
position: relative;
top: 50%;
transform: translateY(-50%);
}