Re: [css-d] span / crashing IE7

2007-05-01 Thread Jukka K. Korpela
On Mon, 30 Apr 2007, Glen Lipka wrote: My IE7 crashes if I look at the following source: Mine does too, after thinking some time. This does not happen if I remove the style element, making the issue CSS-related, but the basic issue is markup. a href=Link1span //a - - It doesn't crash if I

Re: [css-d] span / crashing IE7

2007-05-01 Thread S. F. Alim
Well I don't know, I made few tests of putting proper tags except closing of span /. It still crashes... But if u remove you `!DOCTYPE html` declaration, it works well then. Regards, Salim __ css-discuss [EMAIL PROTECTED]

[css-d] span / crashing IE7

2007-04-30 Thread Glen Lipka
My IE7 crashes if I look at the following source: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html head titleCrashes IE7/title style a { position: relative;} a span{position: absolute;} /style /head body a

Re: [css-d] span / crashing IE7

2007-04-30 Thread Simon Tiplady | Forums
What is the point of a span if it is not spanning anything? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: 01 May 2007 00:51 To: css-d@lists.css-discuss.org Subject: [css-d] span / crashing IE7 My IE7 crashes if I look at the following

Re: [css-d] span / crashing IE7

2007-04-30 Thread Craig Cook
On 4/30/07, Glen Lipka [EMAIL PROTECTED] wrote: It still shouldn't crash the browser. I thought it was valid. The span element isn't empty, so it requires a closing tag. The trailing slash only closes empty/replaced elements. Agreed that an improperly closed span alone shouldn't cause a

Re: [css-d] span / crashing IE7

2007-04-30 Thread Ernie Finlay
span has a beginning and an end,thus span..text../span br for example has no end but must be closed..thus br / . Regards,E.F. From: Simon Tiplady | Forums [EMAIL PROTECTED] To: css-d@lists.css-discuss.org Subject: Re: [css-d] span / crashing IE7 Date: Tue, 1 May:55:33 +0200 What is the point