Re: [css-d] Layout Overflow issue

2007-12-23 Thread Jeroen
On Dec 22, 2007 6:26 PM, Gunlaug Sørtun [EMAIL PROTECTED] wrote: Either you had a margin-top in there, or the software you got that outline from is broken beyond repair. A more direct approach... http://www.gunlaug.no/tos/alien/jer-1/test_07_1222.html

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Gunlaug Sørtun
Jeroen wrote: http://test.intellit.nl/test.html. How does the aligning of the floats work? Floats go as high as they can, but not higher - unless you pull them up. So, floats always align vertically with their top edge or margin in line with whatever element they line up against. With 2

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Gunlaug Sørtun
Jeroen wrote: It seems when you have a container and floats inside them, the container does not stretch to the size of the floats. Is there a way to overcome that problem without specifying the sizes explicitly? Sample code: http://test.intellit.nl/floats.html. Sure. It's the old expand to

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Gunlaug Sørtun
Jeroen wrote: http://test.intellit.nl/align1.png the right float has 10px smaller font size. http://test.intellit.nl/align2.png the right float has same font size as left. Any clues? Either you had a margin-top in there, or the software you got that outline from is broken beyond repair.

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Thierry Koblentz
I did however stumble upon something else (for another part of the webpage); It seems when you have a container and floats inside them, the container does not stretch to the size of the floats. Is there a way to overcome that problem without specifying the sizes explicitly? Sample code:

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Jeroen
On Dec 22, 2007 4:42 AM, Gunlaug Sørtun [EMAIL PROTECTED] wrote: Yes, you have added 10px padding to all sides of a 100% wide #title-date. That makes it 100%+20px wide in standard mode. Also: IE6/7 can't make up their mind about the container-width with a scrollbar, and IE6 can't calculate

Re: [css-d] Layout Overflow issue

2007-12-23 Thread Gunlaug Sørtun
Jeroen wrote: I see you added a width of 510px to the details container, the problem is I don't know the size beforehand, it changes with every photo. The pblog software I use only gives out the width of the photo (533px) in this case. Is there a way to do it with percentages / relative? I

Re: [css-d] Layout Overflow issue

2007-12-23 Thread David Hucklesby
On Dec 22, 2007, at 9:43 AM, Jeroen wrote: I''m working on a design for a photo blog, and stumbled upon an overflow issue for which I can't find the cause. I copied all relevant code to a test file: URL: http://test.intellit.nl/test.html [...] HTML css is valid (CSS partly because of

Re: [css-d] Layout Overflow issue

2007-12-22 Thread Jeroen
On Dec 22, 2007 11:48 AM, Gunlaug Sørtun [EMAIL PROTECTED] wrote: Jeroen wrote: I see you added a width of 510px to the details container, the problem is I don't know the size beforehand, it changes with every photo. The pblog software I use only gives out the width of the photo (533px) in

Re: [css-d] Layout Overflow issue

2007-12-22 Thread Jeroen
On Dec 22, 2007 2:59 PM, Gunlaug Sørtun [EMAIL PROTECTED] wrote: Jeroen wrote: http://test.intellit.nl/test.html. How does the aligning of the floats work? Floats go as high as they can, but not higher - unless you pull them up. So, floats always align vertically with their top edge or

[css-d] Layout Overflow issue

2007-12-21 Thread Jeroen
Hi, I''m working on a design for a photo blog, and stumbled upon an overflow issue for which I can't find the cause. I copied all relevant code to a test file: URL: http://test.intellit.nl/test.html As you can see there is overflow for the X and Y axis, but I only expect the Y axis to be

Re: [css-d] Layout Overflow issue

2007-12-21 Thread Philippe Wittenbergh
On Dec 22, 2007, at 9:43 AM, Jeroen wrote: I''m working on a design for a photo blog, and stumbled upon an overflow issue for which I can't find the cause. I copied all relevant code to a test file: URL: http://test.intellit.nl/test.html As you can see there is overflow for the X and Y

Re: [css-d] Layout Overflow issue

2007-12-21 Thread Gunlaug Sørtun
Jeroen wrote: http://test.intellit.nl/test.html As you can see there is overflow for the X and Y axis, but I only expect the Y axis to be overflowing. What is causing this behavior? And how can I fix this? I suppose it has to do with box model which I probably interpret incorrectly?

Re: [css-d] Layout Overflow issue

2007-12-21 Thread Ingo Chao
Philippe Wittenbergh wrote: ... You can safely drop the '-moz-opacity'. Gecko browsers support the 'opacity' property since at least Firefox 1.0, if not earlier. Nice side note. Is it common consent to drop workarounds for Fx pre 0.9? :)