Which of the two methods conforms to W3C standards? Do they both behave as expected across browsers?
border: none;
border: 0;
feedback
|
|
Either is valid. Your choice but I would favour You seem to be worried about the specs. Well here they are.
The value clearly states that you can use any combination of width/style/colour. In this case you only need to set one. | |||||
feedback
|
|
They are equivalent in effect, pointing to different shortcuts:
And the other..
Both work, just pick one and go with it :) | |||||||||||||||||||
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.
| |||
|
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; | |||
|
feedback
|
|
I use:
From 8.5.4 in CSS 2.1:
So either of your methods look fine. | |||||||||||
feedback
|
|
Using
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.
seems to work fine in all browsers. | |||
|
feedback
|