DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> WEB前端代碼 >> HTML 透明、陰影,圓角等知識點
HTML 透明、陰影,圓角等知識點
編輯:WEB前端代碼     
 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;
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved