How do I right align div elements?

Floats are okay, but problematic with IE 6 & 7.

I’d prefer using the following on the inner div:

margin-left: auto; 
margin-right: 0;

See the IE Double Margin Bug for clarification on why.

Leave a Comment