Heroku Down... Again
heroku.com3 pointsby garand1 comments
You'll never be able to use `position:absolute` for anything outside of the context of an element's parent.
While true, I find that the instances that I need something to be absolutely positioned outside of it's context are few and far between. Also, it is quite easy to set position static on the parent elements. Every new developer will need to wrap their head around nonstandard page flow
I work with a team that is on board with this, so it hasn't been an issue yet. * {
position:relative;
}
This does two things. Allows me to set z-index values without hassle, and also allows me to set top/bottom left/right values.