I'd like to center a small picture and some text at the bottom of the screen. I can easily achieve bottom
Code:
div.fixed {
position: fixed;
bottom: 0;
}
but can't figure out how to center, other than guessing and playing with right and left (I don't know the size of the screen).
What's the best way?