I have a div in which i want to add Video in the background just like the image but i am not getting how to do it..Here is the CSS where i want to add the video..
.page-section {
width: 100%;
min-height: 800px;
padding: 50px 0;
border-bottom: 2px solid #fff;
}
.page-section#intro {
min-height: 400px;
}
and here is the HTML Div..
<div class="page-section">
</div>
I have tried to add video like this but its not working..
.page-section#intro {
min-height: 400px;
background: url(Video/Sapno.MP4) bottom center no-repeat;
}
Please help me to add the video from css into the background of Div..