Forum Moderators: not2easy
i want to underline the accesskey chracter on html button tag,i am using the following for button formatting and accessKey
<input type="button" accesskey="e" class="buttons" name="Button" value="Next" />
buttons class
===============
.buttons {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
text-transform: capitalize;
color: #000000;
background-color: #CCCCCC;
border: outset;
width: 80px;
height: 25px;
}
.accesskey {
text-decoration:underline;
color:red;
font-variant:small-caps;
}
However,its not underlining the characte e,how could i make it happen
Thanks