Which of the two methods conforms to W3C standards? Do they both behave as expected across browsers?

border: none;
border: 0;

link|improve this question

9  
I like these type of overlooked questions. – Christopher Altman Aug 19 '10 at 15:11
feedback

7 Answers

up vote 35 down vote accepted

Either is valid. Your choice but I would favour border:0 as it's shorter. If you have a lot of traffic, you'll notice the difference!

You seem to be worried about the specs. Well here they are.

'border'
    Value:      [ <border-width> || <border-style> || <'border-top-color'> ] | inherit
    Initial:    see individual properties
    Applies to:     all elements
    Inherited:      no
    Percentages:    N/A
    Media:      visual
    Computed value:     see individual properties 

The value clearly states that you can use any combination of width/style/colour. In this case you only need to set one. 0 sets the width, none the style.

link|improve this answer
2  
Thanks for the spec link :)! – John Himmelman May 27 '10 at 16:46
feedback

They are equivalent in effect, pointing to different shortcuts:

border: 0;
//short for..
border-width: 0;

And the other..

border: none;
//short for...
border-style: none;

Both work, just pick one and go with it :)

link|improve this answer
4  
+1 for the detailed explanation and link to w3schools! – Dubs May 27 '10 at 16:32
3  
Also note that "After a zero length, the unit identifier is optional", so border: 0; is valid. – Ishmael May 27 '10 at 16:45
3  
@Dubs seriously?, you like when people link to w3schools? – ajax333221 Dec 27 '11 at 23:07
2  
@ajax333221 - Be careful there with a black and white attitude towards w3schools (or any website). In this case the description is fine, while I do hate them in general, their explanation as it pertains to this question is correct and fairly succinct. You're free to hate them in general, and I do, but don't assume that 0% of the content there is useful, some of it is, even some things on yahoo answers are useful, to a degree. – Nick Craver Dec 28 '11 at 1:58
@ajax33221, I used them as a convenient resource when I was first learning to wwebsite as on the internet. Thanks for bringing their issues to my attention! – Dubs Jan 6 at 19:58
feedback

As others have said both are valid and will do the trick. I'm not 100% convinced that they are identical though. If you have some style cascading going on then they could in theory produce different results since they are effectively overriding different values.

For example. If you set "border: none;" and then later on have two different styles that override the border width and style then one will do something and the other will not.

In the following example on both IE and firefox the first two test divs come out with no border. The second two however are different with the first div in the second block being plain and the second div in the second block having a medium width dashed border.

So though they are both valid you may need to keep an eye on your styles if they do much cascading and such like I think.

<html>
<head>
<style>
div {border: 1px solid black; margin: 1em;}
.zerotest div {border: 0;}
.nonetest div {border: none;}

div.setwidth {border-width: 3px;}
div.setstyle {border-style: dashed;}

</style>
</head>
<body>

<div class="zerotest">
<div class="setwidth">
"Border: 0" and "border-width: 3px"
</div>
<div class="setstyle">
"Border: 0" and "border-style: dashed"
</div>
</div>

<div class="nonetest">
<div class="setwidth">
"Border: none" and "border-width: 3px"
</div>
<div class="setstyle">
"Border: none" and "border-style: dashed"
</div>
</div>

</body>
</html>
link|improve this answer
That's a very good point Chris. +1! – nico Jun 1 '10 at 9:37
feedback

Both do the same. You can use either of the method.

link|improve this answer
feedback

You may simply use both as per the specification kindly provided by Oli

I always use border:0 none;

Though there is no harm in specifying them seperately and some browsers will parse the CSS faster if you do use the legacy CSS1 property calls.

Though border:0; will normally default the border style to none, I have however noticed some browsers enforcing their default border style which can strangely overwrite border:0;

link|improve this answer
feedback

I use:

border: 0;

From 8.5.4 in CSS 2.1:

'border'

Value: [ <border-width> || <border-style> || <'border-top-color'> ] | inherit

So either of your methods look fine.

link|improve this answer
6  
Why do you set both width and style? What's the point? – Oli May 27 '10 at 16:34
1  
Zero dotted looks the same as zero solid – Christopher Altman May 27 '10 at 17:54
True. But, see also Chris's answer – Antony Hatchkins Jan 24 at 12:26
feedback

Using

border: none;

doesn't work in some versions of IE. IE9 is fine but in previous versions it displays the border even when the style is "none". I experienced this when using a print stylesheet where I didn't want borders on the input boxes.

border: 0;

seems to work fine in all browsers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.