網頁

2007年8月27日 星期一

連續英數字無法換行的問題

連續英數字無法換行且會把表格撐大,使得表格很看。
以下列出四個狀況,請在IE及Firefox中比較‧
寬度參考400px
1234
aaaaabbbbbcccccdddddeeeeefffffgggggaaaaabbbbbcccccdddddeeeeefffffggggg
aaaaabbbbbcccccdddddeeeeefffffggggg
aaaaabbbbbcccccdddddeeeeefffffggggg



1.將超出的部份隱藏,IE及Firefox適用。
2.Firefox將超出的部份隱藏,但IE7會換行。
3.超出的部份使用捲軸,但IE7高度有問題。
4.Firefox超出的部份使用捲軸,IE7會換行。

使用word-break:break-all;及word-wrap:break-word;都可將過長的英文斷行,但是遇到一般單字時,word-break:break-all;是依照畫面直接截斷,而word-wrap:break-word;則會依照空格來截斷,較能保持可讀性。
在表格的運用時,Table需設定成table-layout:fixed。

程式碼如下:



2007年8月20日 星期一

how to cleanly start and stop explorer.exe

how to cleanly start and stop explorer.exe

If you are running Windows XP and want a cmd prompt with no strange environment variables set, do the following: CTRL+SHIFT+ESC->File->CTRL+New Task (Run...)
This will open a cmd window with only the basics. This is useful if you have killed Explorer and need to restart it. Explorer will keep the environment of the cmd window that started it.

If you want to cleanly shutdown Explorer without having it automatically restart: Start->Shutdown->CTRL+ALT+SHIFT+Cancel.