CSS float: centered workaround possible? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:24:58Z http://stackoverflow.com/feeds/question/1027397 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1027397/css-float-centered-workaround-possible 0 CSS float: centered workaround possible? ole_berlin 2009-06-22T14:04:55Z 2009-06-22T14:29:31Z <p>Hi,</p> <p>I have a tagcloud in wich the tags (in Divs) should float centered. There is no float: center so I'm looking for a clean solution. My HTML looks something like this:</p> <pre><code>&lt;div id="tagcloud"&gt; &lt;div class="tag"&gt;Tag 1&lt;/div&gt; &lt;div class="tag"&gt;Tag 2&lt;/div&gt; &lt;div class="tag"&gt;Tag 3&lt;/div&gt; &lt;div class="tag"&gt;Tag 4&lt;/div&gt; &lt;/div&gt; </code></pre> <p>The Divs should float with space to both sides (centered). I'm not sure how to explain this any better. Any ideas?</p> <p>thanks!</p> <p><strong>update</strong> The .tag divs must have a flexible width so that varying content fits into them.</p> <p>Also it should be possible to have several tags in one line (if they are short enough)</p> <p>My CSS so far:</p> <pre><code>.tag { padding: 5px 0 0 0; float: left; margin: auto; } .tag img { border-right: 1px solid #fff; margin: 0; float: left; vertical-align: top; } .tag a { font: bold 10px Verdana; margin: 0; background-color: #ccc; padding: 3px 4px 3px 4px; height: 16px; float: left; text-decoration: none; vertical-align: top; cursor: pointer; color: #000; } #tagcloud { margin-top: 7px; text-align: center; } #tag_box #tagcloud .tag { margin-left: auto; margin-right: auto; } </code></pre> <p>My HTML:</p> <pre><code> &lt;div id='tagcloud'&gt; &lt;div class='tag' id='tag_1004'&gt; &lt;img alt="Tag_22x17" src="/images/tag_22x17.png?1245428671" /&gt; &lt;span class='name'&gt;&lt;a href="/tags/design"&gt;design&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class='tag' id='tag_1005'&gt; &lt;img alt="Tag_22x17" src="/images/tag_22x17.png?1245428671" /&gt; &lt;span class='name'&gt;&lt;a href="/tags/degeneration"&gt;degeneration&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class='tag' id='tag_1006'&gt; &lt;img alt="Tag_22x17" src="/images/tag_22x17.png?1245428671" /&gt; &lt;span class='name'&gt;&lt;a href="/tags/deggendorf"&gt;deggendorf&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class='tag' id='tag_1007'&gt; &lt;img alt="Tag_22x17" src="/images/tag_22x17.png?1245428671" /&gt; &lt;span class='name'&gt;&lt;a href="/tags/hamburg"&gt;hamburg&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1027397/css-float-centered-workaround-possible/1027406#1027406 1 Answer by Charlie for CSS float: centered workaround possible? Charlie 2009-06-22T14:06:15Z 2009-06-22T14:12:54Z <p>Perhaps this might help?</p> <pre><code>.tag { margin-left:auto; margin-right:auto; width:100px; } </code></pre> http://stackoverflow.com/questions/1027397/css-float-centered-workaround-possible/1027413#1027413 1 Answer by Josh for CSS float: centered workaround possible? Josh 2009-06-22T14:07:18Z 2009-06-22T14:19:10Z <p>if you set the #tagcloud and .tag styles to the same width you could then just align the text center.</p> <pre><code>#tagcloud, .tag { width:100px; text-align:center; } </code></pre> <p>another option would be as follows:</p> <pre><code>#tagcloud { width:100px; text-align:center; } .tag { display:inline; } </code></pre> http://stackoverflow.com/questions/1027397/css-float-centered-workaround-possible/1027440#1027440 1 Answer by Alexander Corotchi for CSS float: centered workaround possible? Alexander Corotchi 2009-06-22T14:11:46Z 2009-06-22T14:11:46Z <p>Try this </p> <pre><code>.tag { text-align:center; display:inline; } #tagcloud{ text-align:center; } </code></pre> http://stackoverflow.com/questions/1027397/css-float-centered-workaround-possible/1027520#1027520 1 Answer by Alexander Corotchi for CSS float: centered workaround possible? Alexander Corotchi 2009-06-22T14:29:31Z 2009-06-22T14:29:31Z <p>It work on My computer </p> <pre><code> &lt;style&gt; .tag { padding: 5px 0 0 0; display:inline; margin: auto; } .tag img { } .tag a { font: bold 10px Verdana; margin: 0; background-color: #ccc; padding: 3px 4px 3px 4px; height: 16px; text-decoration: none; vertical-align: top; cursor: pointer; color: #000; } #tagcloud { margin-top: 7px; text-align: center; } &lt;/style&gt; </code></pre>