Fieldset and css

liunx

Guest
Hello All,

Is their any way to change the color of the box that surrounds this:
<fieldset><legend>Test</legend>
<input name="test" type="text" value="test">
</fieldset>fieldset{
border: 3px dashed #f00;
}yes:

fieldset{
//whatever
background-color: blue;
border: 1px solid black;
}


--
EDIT:
sry tree, didnt see you answered ;)Thanks guys!
 
Back
Top