I want to set border color of field set. I am using class but this is not working properly because i want to remove fieldset default border color. so how can I use fieldset
It works for me when I define the complete border property. (JSFiddle here)
border
.field_set{ border: 1px #F00 solid; }
the reason is the border-style that is set to none by default for fieldsets. You need to override that as well.
border-style
none