Which CSS tag creates a box like this with title? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T10:36:52Zhttp://stackoverflow.com/feeds/question/113640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title0Which CSS tag creates a box like this with title?Mozammel2008-09-22T07:35:51Z2008-09-27T03:23:49Z
<p>I want to create a box like this with title:
<img src="http://www.mozammelhaque.com/d/box.JPG" alt="CSS box with title" /></p>
<p>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?</p>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113647#1136471Answer by Ikke for Which CSS tag creates a box like this with title?Ikke2008-09-22T07:38:27Z2008-09-22T07:38:27Z<p>I know a Fieldset uses a layout like that. But i don't think there is a single CSS statement for that.</p>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113649#1136492Answer by AlexDuggleby for Which CSS tag creates a box like this with title?AlexDuggleby2008-09-22T07:38:38Z2008-09-22T07:38:38Z<p>Take a look at html element fieldset and styles such as these:</p>
<p><a href="http://www.cssplay.co.uk/menu/form.html" rel="nofollow">http://www.cssplay.co.uk/menu/form.html</a></p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113656#1136562Answer by Mudu for Which CSS tag creates a box like this with title?Mudu2008-09-22T07:41:01Z2008-09-22T07:41:01Z<p>As far as I know (correct me if I'm wrong!), there isn't.</p>
<p>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.</p>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113667#11366716Answer by Athena for Which CSS tag creates a box like this with title?Athena2008-09-22T07:42:46Z2008-09-22T07:42:46Z<p>I believe you are looking for the <code>fieldset</code> HTML tag, which you can then style with CSS. E.g.,</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113674#1136743Answer by AlexWilson for Which CSS tag creates a box like this with title?AlexWilson2008-09-22T07:44:14Z2008-09-22T07:44:14Z<p>from <a href="http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html" rel="nofollow">http://www.pixy.cz/blogg/clanky/css-fieldsetandlabels.html</a></p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113676#1136762Answer by naspinski for Which CSS tag creates a box like this with title?naspinski2008-09-22T07:44:22Z2008-09-22T07:44:22Z<p>This will give you what you want</p>
<pre><code><head>
<title></title>
<style type="text/css">
legend {border:solid 1px;}
</style>
</head>
<body>
<fieldset>
<legend>Test</legend>
<br /><br />
</fieldset>
</body>
</code></pre>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113685#1136851Answer by b3 for Which CSS tag creates a box like this with title?b32008-09-22T07:49:59Z2008-09-22T07:49:59Z<p>For an excellent article on using fieldsets and legends check out <a href="http://www.sitepoint.com/article/fancy-form-design-css/" rel="nofollow">Fancy Form Design Using CSS</a>.</p>
http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113907#1139071Answer by matt lohkamp for Which CSS tag creates a box like this with title?matt lohkamp2008-09-22T09:04:26Z2008-09-22T09:04:26Z<p>I can't believe no one's correcting your common mistake - the <strong>tag</strong> 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.</p>