我正在建立一个joomla网站。 我做了一个简单的自定义模块显示图像(800x500)。 我有另一个带iframe的模块。 (它显示来自livestream.com的视频)。 我可以使用上面的图像(800x500)作为iframe的背景吗? iframe小于图像。我想把它放在上面图像的中心。我不关心透明度。所以,有可能这样做吗?
答案 0 :(得分:0)
将您的图片作为背景(div),然后将您的iframe放入div?
<div style='width:180px;height:150px;background:#c33;
display:flex;justify-content:center;align-items:center'>
<div style='width:140px;height:140px;background:#3c3'>
</div>
</div>