HTML取消iframe自动换行
发布网友
发布时间:2022-04-26 09:23
我来回答
共1个回答
热心网友
时间:2022-04-21 00:44
给这两个 iframe 加一个父层,设置 CSS 的 white-space 为 nowrap
<div style="white-space: nowrap;">
<iframe ...></iframe> <iframe ...></iframe>
</div>
或者不加父层,直接把 style="white-space: nowrap;" 加在 body 标签上