html - Full video background height of video is extending beyond 100%; -


video not 100% extending beyond 100% ? used absolute positioning video's height 110% instead of 100%?

html, body {           width: 100%;           height: 100%;           margin: 0;           padding: 0; }          section {           width: 100%;           height: 100%;          }          section video {           position: absolute;           top: 0;           left: 0;           min-width: 100%;           min-height: 100%;         } 

you need set max-width of video. can combine max-width , min-width width , same height. try code

section video{    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%; } 

Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -