Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我给我的<iframe>标签设置了一个样式style="width:100%",它几乎跨越了页面,除了它在左侧和右侧留下了一个小边距。(我在 Firefox 和 Chrome 上都试过,结果是一样的。)这看起来没什么大不了的,但最好iframe不要留下左右边距。有没有办法做到这一点?
<iframe>
style="width:100%"
iframe
这个 CSS 在 Firefox 中对我有用:
body { margin:0px; } iframe { width:100%; height:100%; border:none }
style="width:100%;margin:0 -10px 0 -10px;"
或您认为将其带到边缘所需的任何数量。负数给它一个负边距,所以它应该延伸到外边缘,如果不是 -20px。