Answers for "heigh video html auto size"

0

video height and width auto set

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
Posted by: Guest on September-28-2021
0

html video autosize

width: 100%    !important;
height: auto   !important;
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language