Blackbams Blog
development – digital arts – internet
Knowledge is free. No one may take possession of it.
In this very short article I am going to show you how to center a div containing floating elements horizontally with pure CSS. Although it should be a simple problem, sometimes it can be annoying to get something centered. So here is a very simple solution for this problem:
How to center a div:
margin: 0 auto;
How to center text elements:
text-align:center;
How to center a div containing floating elements:
HTML:
<div id=”wrapper”>
<div id=”div_to_center”>
<ul>
<li class=”item”>abc</li>
<li class=”item”>def</li>
</ul>
</div>
</div>
#wrapper {
text-align:center;
}
#div_to_center {
margin:0 auto;
display:inline-block;
}
#div_to_center .item {
float:left;
display:inline-block;
}
Dieser Eintrag wurde am 26. February 2014 um 2:02 in der Kategorie CSS veröffentlicht. You can book the comments for this article RSS 2.0. Feedback, discussion, commendation and critics are welcome: Write a comment or trackback.
Tags: CSS basics, Web
No comments yet
Kommentare abonnieren (RSS) or URL Trackback
Leave a comment: