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
Post a Comment