vote up 0 vote down star

I want to create a box like this with title: CSS box 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?

flag

8 Answers

vote up 16 vote down check

I believe you are looking for the fieldset HTML tag, which you can then style with CSS. E.g.,

<fieldset style="border: 1px black solid">

<legend style="border: 1px black solid; 
margin-left: 1em; padding: 0.2em 0.8em ">title</legend>

Text within the box <br />
Etc
</fieldset>
link|flag
you should copy this exact html code in your answer (in addition of your html source code already there). This code will be interpreted and displayed in this post, and that would show it is works exactly as advertised. I am not yet able to edit your post to do just that... – VonC Sep 22 '08 at 8:09
VonC, I tried doing that, but it stripped out all my HTML. Leaving just my text. – Athena Sep 22 '08 at 8:31
It only allows basic literal HTML so its probably that the fieldset tag is not allowed or something like that – Garry Shutler Sep 22 '08 at 9:17
1  
its worth noting that fieldsets are to be used for forms only. – Buzz Sep 22 '08 at 12:19
vote up 1 vote down

I can't believe no one's correcting your common mistake - the tag doesn't look like anything, it's just markup. You can make any combination of tags look like the picture you showed - a header and a paragraph, a term and definition... whatever.

link|flag
vote up 1 vote down

For an excellent article on using fieldsets and legends check out Fancy Form Design Using CSS.

link|flag
vote up 2 vote down

This will give you what you want

<head>
    <title></title>
    <style type="text/css">
        legend {border:solid 1px;}
    </style>
</head>
<body>
    <fieldset>
        <legend>Test</legend>
        <br /><br />
    </fieldset>
</body>
link|flag
vote up 3 vote down

from http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html

<form>
  <fieldset>
  <legend>Subscription info</legend>
    <label for="name">Username:</label>
    <input type="text" name="name" id="name" />
    <br />
    <label for="mail">E-mail:</label>
    <input type="text" name="mail" id="mail" />
    <br />
    <label for="address">Address:</label>
    <input type="text" name="address" id="address" size="40" />
  </fieldset>
</form>


<style type="text/css">
fieldset { border:1px solid green }

legend {
  padding: 0.2em 0.5em;
  border:1px solid green;
  color:green;
  font-size:90%;
  text-align:right;
  }
</style>
link|flag
vote up 2 vote down

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.

link|flag
Thanks, yes you are right! I was looking for fieldset/legend option. Thanks – Mozammel Sep 22 '08 at 7:44
vote up 2 vote down

Take a look at html element fieldset and styles such as these:

http://www.cssplay.co.uk/menu/form.html

Hope that helps.

link|flag
vote up 1 vote down

I know a Fieldset uses a layout like that. But i don't think there is a single CSS statement for that.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.