Which CSS tag creates a box like this with title? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T10:36:52Z http://stackoverflow.com/feeds/question/113640 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title 0 Which CSS tag creates a box like this with title? Mozammel 2008-09-22T07:35:51Z 2008-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#113647 1 Answer by Ikke for Which CSS tag creates a box like this with title? Ikke 2008-09-22T07:38:27Z 2008-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#113649 2 Answer by AlexDuggleby for Which CSS tag creates a box like this with title? AlexDuggleby 2008-09-22T07:38:38Z 2008-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#113656 2 Answer by Mudu for Which CSS tag creates a box like this with title? Mudu 2008-09-22T07:41:01Z 2008-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#113667 16 Answer by Athena for Which CSS tag creates a box like this with title? Athena 2008-09-22T07:42:46Z 2008-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>&lt;fieldset style="border: 1px black solid"&gt; &lt;legend style="border: 1px black solid; margin-left: 1em; padding: 0.2em 0.8em "&gt;title&lt;/legend&gt; Text within the box &lt;br /&gt; Etc &lt;/fieldset&gt; </code></pre> http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113674#113674 3 Answer by AlexWilson for Which CSS tag creates a box like this with title? AlexWilson 2008-09-22T07:44:14Z 2008-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>&lt;form&gt; &lt;fieldset&gt; &lt;legend&gt;Subscription info&lt;/legend&gt; &lt;label for="name"&gt;Username:&lt;/label&gt; &lt;input type="text" name="name" id="name" /&gt; &lt;br /&gt; &lt;label for="mail"&gt;E-mail:&lt;/label&gt; &lt;input type="text" name="mail" id="mail" /&gt; &lt;br /&gt; &lt;label for="address"&gt;Address:&lt;/label&gt; &lt;input type="text" name="address" id="address" size="40" /&gt; &lt;/fieldset&gt; &lt;/form&gt; &lt;style type="text/css"&gt; fieldset { border:1px solid green } legend { padding: 0.2em 0.5em; border:1px solid green; color:green; font-size:90%; text-align:right; } &lt;/style&gt; </code></pre> http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113676#113676 2 Answer by naspinski for Which CSS tag creates a box like this with title? naspinski 2008-09-22T07:44:22Z 2008-09-22T07:44:22Z <p>This will give you what you want</p> <pre><code>&lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;style type="text/css"&gt; legend {border:solid 1px;} &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;fieldset&gt; &lt;legend&gt;Test&lt;/legend&gt; &lt;br /&gt;&lt;br /&gt; &lt;/fieldset&gt; &lt;/body&gt; </code></pre> http://stackoverflow.com/questions/113640/which-css-tag-creates-a-box-like-this-with-title/113685#113685 1 Answer by b3 for Which CSS tag creates a box like this with title? b3 2008-09-22T07:49:59Z 2008-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#113907 1 Answer by matt lohkamp for Which CSS tag creates a box like this with title? matt lohkamp 2008-09-22T09:04:26Z 2008-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>