table兩個屬性:
cellpadding:內容與單元格邊框的距離,內部距離
cellspacing:單元格之間的距離,外部距離
超鏈接去下劃線: a:link { text-decoration: none;color: blue}
a:active { text-decoration:blink}
a:hover { text-decoration:underline;color: red}
a:visited { text-decoration: none;color: green}
其中:
a:link 指正常的未被訪問過的鏈接;
a:active 指正在點的鏈接;
a:hover 指鼠標在鏈接上;
a:visited 指已經訪問過的鏈接;
text-decoration是文字修飾效果的意思;
none參數表示超鏈接文字不顯示下劃線;
underline參數表示超鏈接的文字有下劃線
DIV圓角: -moz-border-radius: 65px;
-webkit-border-radius: 65px;
border-radius: 65px;
陰影: box-shadow: 3px 5px 22px black;
左邊陰影寬度,下面陰影寬度,擴散程度,陰影顏色
透明: filter: alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;