Hansal Mehta
Hansal Mehta

Reputation: 195

How to add Youtube video in the background of HTML section

I have a HTML section in which i want to add a youtube video in the background but i am not able to do it.Here is the HTML to add youtube video in the background..

    <div style="width:100%;">
        <iframe frameborder="0" allowfullscreen="" src="http://www.youtube.com/embed/_OBlgSz8sSM"></iframe>
    </div>

and here is the Fiddle link..Fiddle

Please help me to add this video in the background of section..

Upvotes: 1

Views: 5060

Answers (1)

Youness
Youness

Reputation: 1495

add this to your CSS :

.container{
    position:absolute;
    z-index:999;
    top:0px;

}

here is the FIDDLE

Upvotes: 1

Related Questions