当使用ie-css3.htc时,hover停止为元素工作

时间:2011-06-08 14:32:47

标签: css

.search .search_place li.search_button a { 
background: #017aa7; 
padding: 10px; 
color: #fff; 
text-decoration: none; 
font: normal normal bold 12px/1.5 "Arial", Helvetica, sans;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
behavior: url(ie-css3.htc);
z-index: 100;
position: relative;
}

.search .search_place li.search_button a:hover { 
background: #ffa63c; 
}

我正在使用这个IE7黑客攻击圆角:http://code.google.com/p/box-shadow/downloads/detail?name=ie-css3.htc&can=2&q=

但是当我使用这个htc文件时,悬停停止工作。任何人都有类似的问题:悬停停止工作?

1 个答案:

答案 0 :(得分:1)

尝试切换到CSS3 PIE

这是一个积极维护的项目,amongst other things为旧版本的IE提供border-radius

In my experience it supports :hover properly.