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にしない場合は、外側の端まで伸ばす必要があります。