I have a wrapper that takes up the whole screen and I want to make another div to be centered inside it and all its sides be equidistant from the wrapper.
css:
#wrapper {
width:100%;
height:100%;
top:0;
left:0;
position:absolute;
}
#inner_div {
/*centered, sides equidistant from wrapper*/
}