MacJi “偷懶”翻譯了部分,下午冒著被 BOSS 開除的危險將其補完(原文鏈接)。
使用 line-height 垂直居中
line-height:24px;
使用固定寬度的容器并且需要一行垂直居中時,使用 line-height 即可(高度與父層容器一致),更多的垂直居中總結可以看這里。
清除容器浮動
#main { overflow:hidden; }
期前也提到過這樣的問題,更多信息可以看這里。
不讓鏈接折行
a { white-space:nowrap; }
上面的設定就能避免鏈接折行,不過個人建議長鏈接會有相應的這行(有關換行方面的討論,參看圓心的記錄)。
始終讓 Firefox 顯示滾動條
html { overflow:-moz-scrollbars-vertical; }
更多的 Mozilla/Firefox 私有 CSS 屬性可以參考這里。需跨瀏覽器的支持,也可以使用
body, html { min-height:101%; }
使塊元素水平居中
margin:0 auto;
其實就是
margin-left: auto; margin-right: auto;
這個技巧基本上所有的 CSS 教科書都會有說明,別忘記給它加上個寬度。Exploer 下也可以使用
body{ text-align: center; }
然后定義內(nèi)層容器
text-align: left;
恢復。
隱藏 Exploer textarea 的滾動條
textarea { overflow:auto; }
Exploer 默認情況下 textarea 會有垂直滾動條(不要問我為什么)。
設置打印分頁
h2 { page-break-before:always; }
page-break-before 屬性能設置打印網(wǎng)頁時的分頁。
刪除鏈接上的虛線框
a:active, a:focus { outline:none; }
Firefox 默認會在鏈接獲得焦點(或者點擊時)加上條虛線框,使用上面的屬性可以刪除。
最簡單的 CSS 重置
* { margin: 0; padding: 0 }
如果想“復雜”,參考YUI 的做法(還有這里)。原文留言中也有用戶說了他們的觀點
I have to agree with Niall Doherty, * {margin: 0px; padding: 0px;} basically means "traverse every css element and give it these attributes". That is a very unnecessary strain on the server and a bad semantic practice, as you have to give some elements padding/margin again, after stripping them.
本文鏈接:http://www.95time.cn/tech/web/2008/6129.asp
出處:grace
責任編輯:bluehearts
◎進入論壇網(wǎng)頁制作、WEB標準化版塊參加討論,我還想發(fā)表評論。
|