The CSS Validator had this to say about the following bit of CSS:

  "Property redefined. The shorthand property 'border' already defines
'border-top.'"

CSS involved:

#sidebar{ 
  font: 80% Arial, Helvetica, sans-serif;
  float:right;
  width: 20%;
  border: 1px solid #036;
  border-top: none;
  padding-right: 10px;
}

But the above is exactly what I intended. Rather than put 
    border-right: 1px solid #036; 
    border-bottom: 1px solid #036;
    border-left: 1px solid #036;

I thought it would make more sense to define all the borders then set
the border-top to none. 

Now it works -- but my question are -- Is redefining as I have done
above valid CSS? And is it -appropriate- CSS? 

I want this CSS to be clean as it can get.

My Thanks in advance.
Lynda Peach
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to