[網頁設計] CSS語法

最近常常在摸這個東西,遇到一些問題,就動手記下來…。

  1. CSS 中文教學手冊 (很詳盡,建議新手可以去看看)
  2. 利用CSS建立導覽列
  3. CSS在IE與Firefox都可以兼容的設計要點
  4. 如何利用CSS製作下拉選單,完全不用JavaScript
  5. 用legend、fieldset實現文字在邊線上的效果
  6. IE6下解決Fixed屬性的問題

同場加映

消除按下連結時會產生周圍虛線的CSS語法。

/*———-消虛線———*/

/* For IE, onFocus 的 F 要大寫*/
a{
noFocusline:expression(this.onFocus=this.blur());
}

/* For Firefox */
a:focus{
-moz-outline-style:none;
}

This entry was posted in CSS, 網頁撰寫. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *