Reputation: 101
How to center all div's using a JQuery or CSS?
Example: http://www.jsfiddle.net/2zwu7/
<div id="parrent">
<div class="item">
content
</div>
<div class="item">
content
</div>
...
</div>
Upvotes: 0
Views: 30
Reputation: 27765
Just remove float: left;
from #parrent .item
selector and add display: inline-block;
Upvotes: 3