[css-d] Stretch over a cell

2010-09-20 Thread Michal Čizmazia
Hi, which browsers render my test case correctly? http://cim.szm.com/stretch-over-cell.html Thank you. Michal Cizmazia __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ

Re: [css-d] Stretch over a cell

2010-09-20 Thread David Laakso
On 9/20/10 5:31 AM, Michal Čizmazia wrote: Hi, which browsers render my test case correctly? http://cim.szm.com/stretch-over-cell.html Thank you. Michal Cizmazia On Mac OS X 10.4.11 Pass Opera/10.62 Fail Camino/2.0.3 Safari/4.1.2 WebKit nightly trunk 63031 [crashes browser]

Re: [css-d] Stretch over a cell

2010-09-20 Thread Michal Čizmazia
Wow, thank you David, is the specification clear in this case? Is there a way how can I stretch the nested span over a table cell in all browsers? The test case: - http://jsfiddle.net/Vwg7T/ - http://cim.szm.com/stretch-over-cell.html Michal Cizmazia

Re: [css-d] Stretch over a cell

2010-09-20 Thread David Laakso
On 9/20/10 6:46 AM, Michal Čizmazia wrote: Wow, thank you David, is the specification clear in this case? Is there a way how can I stretch the nested span over a table cell in all browsers? The test case: - http://jsfiddle.net/Vwg7T/ - http://cim.szm.com/stretch-over-cell.html Michal

Re: [css-d] Stretch over a cell

2010-09-20 Thread Philippe Wittenbergh
On Sep 20, 2010, at 7:46 PM, Michal Čizmazia wrote: is the specification clear in this case? Is there a way how can I stretch the nested span over a table cell in all browsers? The test case: - http://jsfiddle.net/Vwg7T/ - http://cim.szm.com/stretch-over-cell.html quote from the spec:

Re: [css-d] Stretch over a cell

2010-09-20 Thread Michal Čizmazia
Thanks Philippe, your test case works for me. Your quote from the specification seemed to be related to the relatively positioned element itself. I use relative positioning just to create a containing block: If the element has 'position: absolute', the containing block is established by the

Re: [css-d] Stretch over a cell

2010-09-20 Thread Philippe Wittenbergh
On Sep 20, 2010, at 9:24 PM, Michal Čizmazia wrote: Your quote from the specification seemed to be related to the relatively positioned element itself. I use relative positioning just to create a containing block: well you apply position relative to the table-cell. What happens in that case