--------------------------------------------
Updated to clarify my question
As in this fiddle https://jsfiddle.net/30x0pdzx/1/, I would like to make the second fieldset showing as the default browser renders here https://jsfiddle.net/1b0hxruq/1/
--------------------------------------------
I would like to override or reset the bootstrap styles of fieldset that have class no-bootstrap
<fieldset class="no-bootstrap">
<legend></legend>
</fieldset>
Currently, bootstrap has styles for fieldset are
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
So what should I do to override (or reset) it to default
browser styles?
fieldset.no-bootstrap {
min-width: ???;
padding: ???;
margin: ???;
border: ???;
}
Thanks for your considering :)