Live data from Hacker News

The complete guide to centering a div

tipue.com

1–10 of 170 posts

Re: The complete guide to centering a div

#5
This is a pointless post. Use the TABLE tag. Yes, it will violate the purity of CSS, but you can trust it, and it will make your day better because it will free you angst and from extensive cross-browser testing. Simple is better than complex. Straightforward is better than arcane.

Re: The complete guide to centering a div

#7
post #5

This is a pointless post. Use the TABLE tag. Yes, it will violate the purity of CSS, but you can trust it, and it will make your day better because it will free you angst and from extensive cross-browser testing. Simple is better than complex. Straightforward is better than arcane.

Using display: table-cell on a div is a more semantic approach than using .

Re: The complete guide to centering a div

#10
post #5

This is a pointless post. Use the TABLE tag. Yes, it will violate the purity of CSS, but you can trust it, and it will make your day better because it will free you angst and from extensive cross-browser testing. Simple is better than complex. Straightforward is better than arcane.

As igvadaimon wrote below, there's no need for a tag. Instead of:

    
      
         my div 
      
    
you can do

    
       my div 
    
The inline styling is just for illustrative purposes, of course.
Post reply on HN