当我创建一个具有活动、悬停和焦点的按钮时,我遇到了 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>