Reputation: 4491
Here is the link that has white spaces between video and images.
HTML:
<video controls="" class="video-width-activity">
<source type="video/mp4" src="tesp.mp4"></source>
</video>
CSS:
.video-width-activity {
height: 450px;
}
If I apply below CSS:
.video-width-activity {
height: 100%;
width: 100%;
}
then this is happening:
Is there any way to remove white spaces?
Upvotes: 0
Views: 476
Reputation:
Looks like the issue is because of some margin
between the video and images on right. Remove margins if any.
Upvotes: 0
Reputation: 131
Not very clear what the cause is but try changing height to auto
.video-width-activity {
height: auto;
width: 100%;
}
Upvotes: 1