首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Firefox对hover、active的兼容有关问题

2012-09-29 
Firefox对hover、active的兼容问题ff4以上写法:.x-bg {background-color: #fff}.x-bg:hover {background-c

Firefox对hover、active的兼容问题
ff4以上写法:

.x-bg {background-color: #fff;}.x-bg:hover {background-color: #ff000;}.x-bg:active {background-color: #000;}


ff3.6必须加上标签才能生效,如下
.x-bg {background-color: #fff;}div.x-bg:hover {background-color: #ff000;}div.x-bg:active {background-color: #000;}


热点排行