Re: [css-d] Remove frame borders through CSS

2006-10-18 Thread Mark J. Reed
On 10/17/06, Bernat Lleonart [EMAIL PROTECTED] wrote:
 I'm trying with frame { border: none;} and it doesn't work (perhaps
 because I'm on Firefox on Mac OS X?).

Well, you could try border-style: none; but border: none should work.
Do you have a link we could look at?


-- 
Mark J. Reed [EMAIL PROTECTED]
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Remove frame borders through CSS

2006-10-17 Thread Bernat Lleonart
Hi,

I'm building a site using frames, and if I use the property border=0
in the frame tag, because it doesn't validate.

I'd like to know how can I achieve the same effect through CSS.

Thanks!
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Remove frame borders through CSS

2006-10-17 Thread Ian Young

 Subject: [css-d] Remove frame borders through CSS
 
 
 Hi,
 
 I'm building a site using frames, and if I use the property border=0
 in the frame tag, because it doesn't validate.
 
 I'd like to know how can I achieve the same effect through CSS.
 
 Thanks!
 __


Don't want to appear negative, but don't build a site using frames!
Search engine hate them and seems a waste of good CSS.

Ian
-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.4/477 - Release Date: 16/10/2006

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Remove frame borders through CSS

2006-10-17 Thread Bernat Lleonart
I know what you mean, but this time I have no choice, I'm working on a
system that already uses frames, and I can't avoid them. I'm trying to
validate the code, and frameset border=0 is not valid.

On 10/17/06, Ian Young [EMAIL PROTECTED] wrote:

  Subject: [css-d] Remove frame borders through CSS
 
 
  Hi,
 
  I'm building a site using frames, and if I use the property border=0
  in the frame tag, because it doesn't validate.
 
  I'd like to know how can I achieve the same effect through CSS.
 
  Thanks!
  __
 

 Don't want to appear negative, but don't build a site using frames!
 Search engine hate them and seems a waste of good CSS.

 Ian
 --
 No virus found in this outgoing message.
 Checked by AVG Free Edition.
 Version: 7.1.408 / Virus Database: 268.13.4/477 - Release Date: 16/10/2006


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Remove frame borders through CSS

2006-10-17 Thread Mark J. Reed
On 10/17/06, Bernat Lleonart [EMAIL PROTECTED] wrote:
 I know what you mean, but this time I have no choice, I'm working on a
 system that already uses frames, and I can't avoid them. I'm trying to
 validate the code, and frameset border=0 is not valid.

If you want to do it in the HTML, you can;the spec just makes you
specify borders on the individual frame elements instead of on the
frameset as a whole (which does give you more control):

frame frameborder=0 ...

But you might as well do it just once with CSS instead.

-- 
Mark J. Reed [EMAIL PROTECTED]
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Remove frame borders through CSS

2006-10-17 Thread Bernat Lleonart
On 10/17/06, Felix Brill [EMAIL PROTECTED] wrote:
 Bernat Lleonart wrote:
  Hi,
 
  I'm building a site using frames, and if I use the property border=0
  in the frame tag, because it doesn't validate.
 
  I'd like to know how can I achieve the same effect through CSS.

 Simply do:

 frame { border: none;}


 Felix


I'm trying with frame { border: none;} and it doesn't work (perhaps
because I'm on Firefox on Mac OS X?).
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/