2010年6月7日 星期一

Firefox 內容過多會變成空白 處理方式

愛看小說的大大應該常常會用到...
忽然想到可以拿來寫....XD

當文字太多的時候或是內容太多的時候Firefox會處理一半....
有些會空白....
就要用IE去開....麻煩啦!!

現在教一招可以一勞永逸!!

1.安裝Stylish擴展插件

2.新增一個空白樣式..
Firefox重新啟動後右下方...編寫新樣式→空白樣式

3.名稱隨便打(本人是打 處理空白 )
標籤...不用管
內容貼上:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix(http)
{
div[class="postmessage defaultpost"]{
overflow: visible! important;
}
table[class="t_table"]{
width: 100% !important;
}
}

即可......這是"所有網頁"都通用的語法....!!

如果不需要所有網頁只想要單獨某些網域....可以貼這樣
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document
domain("blogger.com"),
domain("google.com.tw") {
div[class="postmessage defaultpost"]{
overflow: visible! important;
}
table[class="t_table"]{
width: 100% !important;
}
}

這是舉例blogger跟GOOGLE可用...把網域貼在domain("")內用,號分開即可....(網址請自行更改成需要擴展的網域...例如XX論壇.XX小說網)

..............................................................................................................
另外我還找到Google Reader 內容顯示缺失的語法
一起補上....(雖然我用不到...)

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document
url-prefix(http://www.google.com/reader),
url-prefix(https://www.google.com/reader),
url-prefix(http://google.com/reader),
url-prefix(https://google.com/reader) {
/* Show large contents correctedly,
especially for large quantity of pictures. */
#current-entry.entry,
#current-entry .entry-container,
#current-entry .entry-main ,
#current-entry .entry-body ,
#current-entry .item-body
{overflow:visible!important; height: auto !important; }

#entries .collapsed .entry-title {
font-weight:normal !important;
color: #200 !important;
}
#entries .read .collapsed *{
font-weight:normal;
color: #ccc !important;
}
#current-entry .collapsed {
height: 3ex !important;
line-height: 3.2ex !important;
}
#current-entry .collapsed h2.entry-title {
font-size: 130% !important;
font-weight: bold !important;
}

/* limit init image max height in content area. */
#current-entry img {max-height: 120px!important;}
#current-entry img:hover {max-height: none!important;}
}

最後面幾行是限制 Reader 正文內容中的圖片的最大高度的。把所有 feed 輸出中包含的圖片初始高度都限定在不超過120px的高度,只有在鼠標移上去的時候才恢復到一定的原始尺寸。這樣對於快速瀏覽來說會比較高效。同樣的類似樣式可以用於各種顯示圖片的場合。

..............................................................................................................
話說....這應該是Firefox本身可以設定的值....
也是Firefox開發者的問題...
怎麼會為了這個又要弄個插件勒....
又要浪費資源....(碎碎念ing.....)

沒有留言:

張貼留言

各位網友抱歉,即日起~
"匿名"發問~均不予以發佈