Css background video

前端 未结 4 1629
梦谈多话
梦谈多话 2020-12-28 10:43

Does someone know how to center this video background?

I tried:

margin: 0 auto;
text-align: center;

So far but none of these worked

4条回答
  •  情书的邮戳
    2020-12-28 11:13

       .name-class {
        background: url(../images/tv-temp.png) no-repeat;
        background-position: center;
        height: 686px;
        position: fixed;
        top: 100px;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
        z-index: -100;
        }
        .name-class video {
        height: 473px;
        position: absolute;
        top: 148px;
        left: 3px;
        width: 100%;
        }
    

提交回复
热议问题