/ Published in: CSS
                    
                                        
Today in the days of high-resolution widescreen displays, it's annoying to visit websites that are formatted like it's 1990's. aligned all the way to the left. Make sure your website doesn't suffer the same fate by forcing it;s content to center horizontally and vertically.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
<style type="text/css">
/* Center your website horizontally */
.wrapper{
width:960px;
display:table;
margin:auto;
}
/* Center certain content vertically */
.container{
min-height: 10em;
display: table-cell;
vertical-align: middle;
}
</style>
<div class="wrapper">
<div class="container">
<p>Content goes here</p>
</div>
</div>
URL: http://www.apphp.com/index.php?snippet=css-center-site-content
Comments
 Subscribe to comments
                    Subscribe to comments
                
                