2

当我创建一个具有活动、悬停和焦点的按钮时,我遇到了 Mac Firefox/Chrome/Safari 和 Window/Chrome 的问题。悬停有效,但活动和焦点无效。它们三个都只能在 Window/Firefox 上完美运行。我用css来做。有什么建议吗?

这是我的CSS:

.navList button:hover,
.navList button:active,
.navList button:focus{ /* Changed */
border-color: black; 
border-style: solid;
background: rgb(73,155,234); /* Old browsers */
background: -moz-linear-gradient(top,  rgb(73,155,234) 0%, rgb(32,124,229) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(73,155,234)), color-       stop(100%,rgb(32,124,229))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgb(73,155,234) 0%,rgb(32,124,229) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgb(73,155,234) 0%,rgb(32,124,229) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgb(73,155,234) 0%,rgb(32,124,229) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgb(73,155,234) 0%,rgb(32,124,229) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499bea', endColorstr='#207ce5',GradientType=0 ); /* IE6-9 */
}

这是html:

<ul id="List" class="navList">
<button id="eButton" class="moduleButton">Employees</button>
<button id="iButton" class="moduleButton">Inventory</button>
</ul>
4

1 回答 1

-1

您必须遵守伪类的特定时间顺序:

  1. :link
  2. :visited
  3. :focus
  4. :hover
  5. :active

有关更多详细信息,请参阅http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes

于 2012-08-28T09:13:43.980 回答