0
     <div class="box1">
        <video   preload="auto" autoplay loop muted="muted" volume="0"> 
        <source src="videos/splash4.mp4" type="video/mp4"> 
        </video>
        </div>

**This is the css**

.box1{
width:100%;
height:800px;
}

では、このビデオをDivに合わせるにはどうすればよいでしょうか? http://www.google.com/nexus/7/のように

4

3 に答える 3

0

これを試して

.box1 video{ 
   width: 100% !important;
   height: 100% !important;
}
于 2013-10-28T05:45:40.640 に答える