Here is the sample I'm working with. I would like to not use any javascript if possible, and if absolutely required with no other solutions possible I would use jQuery.
The 3 inner divs I'm trying to center are an example. In the end result, these are generated by script so I wont know the width or height to use a negative px size for the margin's in the .circle class.
I'd be willing to change the structure of the div's but I'm looking for something clean and simple, though I would rather change the structure than use javascript.
FF4, Safari(iOS)/Chrome, IE9 are my end targets.
edit:
This is the end result I would like, but its using jquery.
Dan's answer would work as well. It puts the onus on the generating script to calculate the negative margins. This would be acceptable in the end I think but I was hoping that all I would have to provide would be the desired size and not any positioning related information from the generating script.
@thirtydot - Right now, none. I'm coding by hand. in the end this would be generated by either PHP or c# depending on my server platform.
"these are generated by script"- what script? If they are programmatically generated, why can't you just output the required negative margin values as per @Dan Marshall's answer? – thirtydot Mar 25 '11 at 21:29