I was thinking about CSS positioning modes today and realized that I never use position:relative
for anything other than making position:absolute
work on child elements.
I'm more of a "developer" than a "designer", but I've done quite a few CSS-based layouts over the years. I've used tables, float, margins (positive and negative), position:absolute, and even position:fixed, but I don't think I've ever had an occasion where I've used position:relative for actually positioning an element.
Is there some great CSS-guru technique that relies on position:relative (and is used in real-world designs)? Am I missing out?