水平居中 Iframe 而不指定宽度/高度 CSS
我有一个 iframe
,我试图使用 CSS 居中,但是有没有办法在不指定 iframe
元素的高度和宽度的情况下实现这一点?
I have an iframe
which I'm trying to center using CSS, but is there a way to do it without specifying the height and width of the iframe
element?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iframe
是一个块级元素。它默认占据父容器的整个宽度。因此,如果您想将其在其父容器中居中,则需要在 CSS 中设置width
等。另一种方法是将父容器居中。
iframe
is a block level element. It defaults to taking up the entire width of the parent container. So if you want to center it within it's parent container, you will need to setwidth
, among other things, in the CSS.Another approach would be to center the parent container.