Hi
I have a command button shown as a link (using CSS) on a
jsf page.
<h:commandButton id="prevBtn" value="Prev" actionListener="#{selectLEZDatesBean.prevMonth}" styleClass="link-like-button-center"/>
The CSS is
.link-like-button-center {
background-color: transparent;
color: #245CCE;
border-style: none;
cursor: pointer;
cursor: hand;
padding-left: 1px;
text-align: left;
font-size:100% !important;
font-family:Verdana,Arial,Helvetica,sans-serif;
}
I need to underline it on hovering mouse over it.I am using the following CSS for it.
.link-like-button-center:hover {
color: #945C9E;
text-decoration: underline;
}
It works fine in Internet Explorer but no underline is shown on mozilla.Is there any specific implementation required on Mozilla?