我在 Html 中设置了全屏图像,并想添加覆盖文本。
我的 CSS 看起来像
.video {
position: fixed;
left: 0px;
top: 0px;
z-index: -100;
min-height: 100%;
min-width: 1040px;
width: 100%;
height: auto;
/*overflow: hidden;*/
}
.maintext {
color: #CCC;
z-index: 100;
font-size: 24px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-variant: small-caps;
font-weight: normal;
}
.rightcolumn {
float: left;
width: 50%;
}
.leftcolumn {
float: left;
width: 40%;
margin-left: 10%;
}
我希望我的左右栏显示在后台播放的视频上。我的 html 代码中有全屏循环的视频。
总而言之,我理想情况下想要看起来像这样的东西