Setting < fielset> in Bootstrap Page

Creating the fieldset inside form in bootstrap page.

If you are the person who is planning to create <fieldset> and <legend> tag in the bootstrap page, bootstrap does not allow us to create the border arround the <legend> tag. Apply the following css to show the border.

fieldset {
	border: 1px solid black !important;
	padding: 1rem;
	border-radius: 0.3rem;
}

legend {
	float: initial;
	width: initial;
}