I’m currently trying to have an attractive form part of which includes a keygen tag. This works well, but when I try to apply the same CSS I’m using for the “text” fields to the keygen tag I get a less than optimal effect. Is there a quick reference as to what styles work with the keygen field and which don’t?
UPDATE
Sorry I wasn't in front of my development machine earlyer and unable to provide a screenshot, now I am...
Current screenshot is 1
Current CSS (fragment) reads
form#setup textarea {
background: #ffffff;
border: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
font: italic 26px Georgia, "Times New Roman", Times, serif;
outline: none;
padding: 5px;
width: 450px;
}
form#setup keygen {
background: #ffffff;
border: none;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
font: italic 26px Georgia, "Times New Roman", Times, serif;
outline: none;
padding: 5px;
width: 450px;
}
Where setup is the id of the form. (I'm planning on increasing the font size of the label's to match the text entry boxes BTW)
UPDATE2 here is a jsfiddle link http://jsfiddle.net/uAsJN/