Wrapping in a Fieldset Box
The Fieldset Box element provides a visual container for other elements, including User Input elements.
The example above shows a Fieldset Box, with a caption of "My User Input Controls" surrounding Input Select List and Input Radio Buttons elements. The box has been styled to have a pale blue background.
The elements used to produce the previous example are shown above, and this style sheet code:
#myFSBox {
background-color: AliceBlue;
}
#myFSBox legend {
padding: 0px 5px 0px 5px;
}
was used to style it. The second class sets the space before and after the box caption text.