Witam
W jaki sposób dodać trzy filmy w jednej linii na stronę tak aby były responsywne? I w jaki sposób lepiej dodawać filmy normalny url czy ten embed ?
<div class="col-9 center-block" align="center">
<div class="video-container text-center">
<iframe width="560" height="415" src="https://www.youtube.com/embed/..." frameborder="0"
allowfullscreen></iframe>
</div>
<div class="video-container text-center">
<iframe width="560" height="415" src="https://www.youtube.com/embed/..." frameborder="0"
allowfullscreen></iframe>
</div>
<div class="video-container text-center">
<iframe width="560" height="415" src="https://www.youtube.com/embed/..." frameborder="0"
allowfullscreen></iframe>
</div>
</div>
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
width: 30%;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.entry-content img,
.entry-content iframe,
.entry-content object,
.entry-content embed {
max-width: 100%;
}