[css-d] Not sure how to do this in CSS.

2006-11-30 Thread jon
I am creating a site with a layout similar to the http://www.milliondollarhomepage.com/ - I want blocks of 10px each, and I want 100 blocks across, and 100 blocks down. I have been contemplating how to do this with CSS, and I cannot think of any way. It has to be able to span over multiple spots

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread Roger Roelofs
On Nov 30, 2006, at 6:57 PM, [EMAIL PROTECTED] wrote: I am creating a site with a layout similar to the http://www.milliondollarhomepage.com/ - I want blocks of 10px each, and I want 100 blocks across, and 100 blocks down. I have been contemplating how to do this with CSS, and I cannot

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread jon
It will be all text. The problem with doing it your way is having to define rect's and squares. Assuming someone bought 30px vertically, I would have to find the other 2 squares and remove them. I guess that wouldn't be too bad, but seems like there must be an easier way. On Nov 30, 2006,

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread jon
it will be all text Sorry, I meant it will be all image - no text On Nov 30, 2006, at 6:57 PM, [EMAIL PROTECTED] wrote: I am creating a site with a layout similar to the http://www.milliondollarhomepage.com/ - I want blocks of 10px each, and I want 100 blocks across, and 100 blocks down.

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread Roger Roelofs
Jon, On Nov 30, 2006, at 7:29 PM, [EMAIL PROTECTED] wrote: The problem with doing it your way is having to define rect's and squares. Assuming someone bought 30px vertically, I would have to find the other 2 squares and remove them. I'm suggesting that you don't pre-define any squares.

Re: [css-d] Not sure how to do this in CSS.

2006-11-30 Thread Alex Robinson
.square20 { width: 20px; height: 20px; } .rect1040 { width: 40px; height: 10px; } #a1 { top: 30px; left: 100px; } #a2 { top: 50px; left: 50px; width: 20px; height: 50px; } #a3 { top: 50px; left: 100px; } Actually, I think that's more complex than needs be You don't need to specify the widths