我試圖讓兩個div(一個嵌入YouTube視頻坐在圖像上,另一個是文本)並排坐在一起。我通常會使用float: left;
規則來做到這一點,但是通過圖像上的視頻的CSS/HTML組合來處理更爲棘手。寫在旁邊
我該如何去做這件事?
我的代碼:你的頁面上
.backgroundimage {
position: relative;
top: 70px;
right: 390px;
float: left;
}
.Youtube {
position: absolute;
left: 280px;
bottom: 46px;
}
<div class="backgroundimage">
<img src="http://truespeed.ca/wp-content/uploads/2016/06/tvscreen.png" alt="null" />
<iframe class="Youtube" width="479" height="269" src="https://www.youtube.com/embed/6ydYvG52K-E" frameborder="0" allowfullscreen></iframe>
<p>Hi, this is some test text!</p>
</div>
我沒有看到你的HTML代碼中的任何文本。 –
我給它增加了一些文字。謝謝你告訴我! –
請檢查我發佈的答案中的代碼。 –