Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
К примеру так:Подскажите как сделать адаптивным видео в карточке товара
Вставляю видео с ютуб на компе нормально отображается а на мобильном вылазит за рамки сайта.
Как с этим бороться ?
<div class="video-responsive">
<iframe width="auto" height="auto" src="__Ссылка на видео__" frameborder="0" allowfullscreen></iframe>
</div>
.video-responsive {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow:hidden;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}