We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

salsajid on 07/24/07


Tagged

css


Versions (?)


Who likes this?

10 people have marked this snippet as a favorite

basicmagic
salsajid
Quizosde
vali29
aziz
marteki
verbal
stoker
RockwayBeach
vertoo


Centering a div of unknown width


Published in: CSS 


  1. .message-container {
  2. margin: 0 auto 8px;
  3. display: table;
  4. }
  5.  
  6. .message-container div {
  7. display: table-cell;
  8. }
  9.  
  10.  
  11. <!--[if IE]>
  12. .message-container {
  13. display: block;
  14. text-align: center;
  15. }
  16. .message-container div {
  17. display: inline;
  18. zoom: 1;
  19. }
  20. <![endif]-->

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: vertoo on May 10, 2008

You need to login to post a comment.