I want to create a box like this with title:
Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
I want to create a box like this with title:
Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
I think this example can also be useful to someone:
This will give you what you want
from http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html
I believe you are looking for the
fieldset
HTML tag, which you can then style with CSS. E.g.,As far as I know (correct me if I'm wrong!), there isn't.
I'd recommend you to use a div with a negative-margin-h1 inside. Depending on the semantic structure of your document, you could also use a fieldset (HTML) with one legend (HTML) inside which approximately looks like this by default.
If you are not using it in forms, and instead want to use it in an non-editable form, you can do this via the following code -
And in the CSS file