
2010年2月24日
如鼠標移到 class 為 box 的 div 標簽中背景變色
.vbox div:hover{background: #ddd;}
據說 IE6.0、Firefox2.0、Opera 9.23都不支持
posted @
2010-02-24 22:10 流浪汗 閱讀(1976) |
評論 (0) |
編輯 收藏
想改 a 的默認方式,比如:鏈接不要下劃線,鼠標移到上面時有劃線。
css 如
a:hover {text-decoration: underline;}
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
是沒有達到鼠標稱到上面有劃線。
必須改為:
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:hover 放到最后。
posted @
2010-02-24 22:04 流浪汗 閱讀(999) |
評論 (3) |
編輯 收藏