Alex.
Account Closed
- Impact
- 5
In my site, I have the CSS:
I want to edit this to allow multiple, different class's of fieldset, but when I tried it:
The result came up exactly as before....
What am I doing wrong??
EDIT: I had also changed the fieldset tag to the 'class' and it doesn't work
Code:
fieldset{
border: 1px solid #FFFFFF;
width: 10em;
padding: 2px 6px;
}
legend{
color: #FFFFFF;
background: #000000;
border: 1px solid #FFFFFF;
padding: 2px 6px;
}
I want to edit this to allow multiple, different class's of fieldset, but when I tried it:
Code:
fieldset.leftcolumn{
border: 1px solid #FFFFFF;
width: 10em;
padding: 2px 6px;
}
legend.leftColumn{
color: #FFFFFF;
background: #000000;
border: 1px solid #FFFFFF;
padding: 2px 6px;
}
The result came up exactly as before....
What am I doing wrong??
EDIT: I had also changed the fieldset tag to the 'class' and it doesn't work
Last edited:








