我們經常在html裡面通過嵌入iframe的方式引入別的頁面,但是因為某些原因,比如引入的頁面比我們設定的iframe要大,這個時候就會出現滾動條,為了去除這個滾動條,我們可以在iframe裡面加入乙個css的屬性
[css]view plain
copy
print?
overflow
:hidden
;
通過設定這個屬性iframe就不會出現滾動條了
我們通過iframe引入的頁面會生成乙個邊框,我們大部分情況下都不需要這個邊框,那麼我們可以這樣設定
[css]view plain
copy
print?
frameborder=
"no"
border=
"0"marginwidth=
"0"marginheight=
"0"scrolling=
"no"
iframe引入的頁面,我們還可以給他設定成透明的背景
[css]view plain
copy
print?
allowtransparency=
"true"
去掉iframe橫向滾動條
2010年01月22日 星期五 04 59 p.m.主頁面加iframe scrolling yes 子頁面 讓豎條消失 讓橫條消失 還要去掉 子頁面裡的 兩個都去掉 iframe自適應高度 寬度 function dyniframeautosize iframename,autotype 方法一 ...
iframe去掉豎向滾動條仍可以滾動
iframe內部頁面 htmllang en head metacharset utf 8 title titletitle style inner container for chrome 只針對谷歌瀏覽器 inner container webkit scrollbar style head b...
如何去掉iframe框架自帶滾動條
1 去掉底下的滾動條且保留右邊的滾動條 在嵌入的頁面裡設定 body 2 去掉右邊的滾動條且保留底下的滾動條 如果只想保留底下的滾動條,那麼可以在嵌入的頁面裡設定 body 3 去掉全部的滾動條 第乙個方法 iframe 有乙個scrolling屬性,它有 auto yes no 這三個值。scro...