Forum Moderators: not2easy
I figured I could use absolute positioning in CSS. But everybody's screens are different and I can't predict where it's going to end up. So I am wondering if it's possible to specify an offset from center in pixels?
left : 50%; /* puts left edge in the middle */
margin-left : -300px; /* change to equal half the length of your centered table */
Also, you can absolutely position something a set distance from the right edge of the screen like this:
right: 120px; /* other units like percents work as well */
Yes, make it negative to center the original table. Make it positive to put an element to the right of the centered table. Make it positive and add the width of the element you're placing to put it to the left. Was that confusing enough? :)
I really need to work on explaining things...