jazzband / django-embed-video

Django app for easy embedding YouTube and Vimeo videos and music from SoundCloud.
http://django-embed-video.rtfd.org
MIT License
383 stars 137 forks source link

100% x 100% width / height #98

Closed philmade closed 5 years ago

philmade commented 5 years ago

When I put {% video my_video "100% x 100%" %} into template tag, I can get 100% width, but I can't ever get 100% height. I always just get a fraction of the height, usually about 10%. I've tried putting it into a div with 100% height also, but this doesn't seem to work?

image

adriancarayol commented 5 years ago

You need to set a height in pixels in the parent container, for example:

.video {
height: 400px;
}
<div class="video">
{% video my_video "100% x 100%" %}
</div>