文字兩端對齊:
text-align:justify;
text-justify:inter-ideograph;
清除浮動:
.clear{clear:both;line-height:0;height:0;font-size:0;}
清除浮動偽類:
.clearfix: after{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
設定不讓單字斷開
word-break : keep-all
字元自動換行
word-break:keep -all;word-break:break-all;word-wrap:break-word
使用line-height 垂直居中
line-height:24px;/*使用固定寬度的容器並且需要一行垂直居中時,使用line-height 即可(高度與父層容器一致),更多的垂直居中總結可以看這裡。
*/
清除容器浮動
#main {overflow:hidden;}
不讓連結折行
a {white-space:nowrap;}
總是讓Firefox 顯示捲軸
html {overflow:-moz-scrollbars-vertical;}
將區塊元素水平居中
body, html {min-height:101%;}或margin:0 auto;
隱藏Exploer textarea 的捲軸
textarea {overflow:auto;}
設定列印分頁
h2 {page-break-before:always ;}/*設定列印網頁時的分頁*/
刪除連結上的虛線框
a,area { blr:expression(this.onFocus=this.blur()) }
:focus { -moz-outline- style: none; }
最簡單的CSS 重置
* {margin: 0; padding: 0}/*此屬性慎用,雖然能消除預設屬性,但是對瀏覽器渲染有影響,而且在語意化表達上也欠佳。 */
圖片回車後打文字需要屬性
img{vertical-align:top;}
透明屬性
filter:alpha(opacity=50); -moz-opacity: 0.5; opacity: 0.5;
cursor:hand;
滑鼠換成手的形狀
cursor:hand;