Re: [css-d] firefox border when i click over a link

2007-03-03 Thread Mike Nowak
>>> "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> 3/2/2007 4:59 AM >>> i'm experiencing an annoying issue on Firefox http://studiomaci.it/ita-progetti.html the link in the page, when clicked, displays a persistent dotted border. Why it happens and how I can avoid this ff's behaviour? - While it

Re: [css-d] firefox border when i click over a link

2007-03-02 Thread David Hucklesby
On Fri, 2 Mar 2007 10:59:15 +0100, [EMAIL PROTECTED] wrote: > i'm experiencing an annoying issue on Firefox > http://studiomaci.it/ita-progetti.html > the link in the page, when clicked, displays a persistent dotted border... On Sat, 3 Mar 2007 10:35:44 +0900, Philippe Wittenbergh replied: > +1. >

Re: [css-d] firefox border when i click over a link

2007-03-02 Thread Philippe Wittenbergh
>> I personally wouldn't do this though; as part of the browser's >> default >> behaviour the user is expecting it. That outline indicates that the >> link is currently active. It may be annoying when clicking, but >> if one >> is tabbing through the document then it's the only thing to show

Re: [css-d] firefox border when i click over a link: alternatives

2007-03-02 Thread francky
Jukka K. Korpela wrote: > On Fri, 2 Mar 2007, Rob Wilmshurst wrote: > [...] >> I personally wouldn't do this though; as part of the browser's default >> behaviour the user is expecting it. That outline indicates that the >> link is currently active. It may be annoying when clicking, but if one >>

Re: [css-d] firefox border when i click over a link

2007-03-02 Thread Jukka K. Korpela
On Fri, 2 Mar 2007, Rob Wilmshurst wrote: > You need to set the property 'outline' on a:focus, eg a:focus { outline: > none; } > > It's a CSS3 property, It's both in the CSS 2 specification and the CSS 2.1 draft, but it has often been omitted from presentations of CSS, since browser support used

Re: [css-d] firefox border when i click over a link

2007-03-02 Thread Rob Wilmshurst
Hi Jean-Claude, You need to set the property 'outline' on a:focus, eg a:focus { outline: none; } It's a CSS3 property, which I believe most browsers other than IE recognize. Basically, it sits outside of any specified border and does not take up any space in the document flow (see http://unf

Re: [css-d] firefox border when i click over a link

2007-03-02 Thread Tudor
I think you cannot avoid this. That's the way ff do with links, as far as I know [EMAIL PROTECTED] wrote: > i'm experiencing an annoying issue on Firefox > http://studiomaci.it/ita-progetti.html > the link in the page, when clicked, displays a persistent dotted > border. Why it happens and how

[css-d] firefox border when i click over a link

2007-03-02 Thread [EMAIL PROTECTED]
i'm experiencing an annoying issue on Firefox http://studiomaci.it/ita-progetti.html the link in the page, when clicked, displays a persistent dotted border. Why it happens and how I can avoid this ff's behaviour? thanks Jean-claude __