gpt4 book ai didi

html - 如何并排放置两个iframe

转载 作者:太空宇宙 更新时间:2023-11-04 13:41:25 28 4
gpt4 key购买 nike

我试过几种代码,比如这个:

<div class="box"><iframe src="https://embed.spotify.com/?uri=spotify:user:1290230929:playlist:6nTIVNGZfnZ4urUiwHIgpT" 
frameborder="0"
scrolling="no"
width="100%"
height="512"
align="left"> </iframe> </div>
<div class="box"><iframe src="https://embed.spotify.com/?uri=spotify:user:1285279066:playlist:56KI83cMiMTOocIdXq2R5j"
frameborder="0"
scrolling="no"
width="100%"
height="512"
align="right">
</iframe>

它不能并排工作,如果有人可以为我解决这个问题,谢谢。

最佳答案

这是一个使用floatdivs 的解决方案

HTML:

<div class="box">
<iframe src="https://embed.spotify.com/?uri=spotify:user:1290230929:playlist:6nTIVNGZfnZ4urUiwHIgpT" frameborder="0" scrolling="no" width="100%" height="512" align="left"> </iframe>
</div>

<div class="box">
<iframe src="https://embed.spotify.com/?uri=spotify:user:1285279066:playlist:56KI83cMiMTOocIdXq2R5j" frameborder="0" scrolling="no" width="100%" height="512" align="right"></iframe>
</div>

CSS:

.box{
float:left;
margin-right:20px;
}
.clear{
clear:both;
}

http://jsfiddle.net/E5WFT/

关于html - 如何并排放置两个iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23737427/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com