[RESOLVED] Using CSS for the input tags

liunx

Guest
Hi All

I am using the following code in my CSS to make my input tags font size 11.



input {
font-size: 11px;
}



Whilst this is appropriate for drop down boxes and textboxes i wish my submit buttons to be larger.

Is this possible?html:

<input class="button" name="submit" type="submit" value="Send" />

css:

.button {
font-size:11px
}cool, thankscan you add bold to the text?.button {
font-size: 11px;
font-weight: bold;
}
 
Top