This is Clinton Farleigh's TypePad Profile.
Join TypePad and start following Clinton Farleigh's activity
Clinton Farleigh
Recent Activity
I'm pretty sure that your problem with css is that you are doing it wrong.
Let me take the LessCSS example:
#header {
-moz-border-radius: 5;
-webkit-border-radius: 5;
border-radius: 5;
}
#footer {
-moz-border-radius: 10;
-webkit-border-radius: 10;
border-radius: 10;
}
SHOULD BE:
#header, #footer {
-moz-border-radius: 5;
-webkit-border-radius: 5;
border-radius: 5;
}
Now the SASS example:
.content_navigation {
border-color: #3bbfce;
color: #2aaebd;
}
.border {
padding: 8px;
margin: 8px;
border-color: #3bbfce;
}
SHOULD BE:
.content_navigation, .border {
border-color: #3bbfce;
}
.content_navigation {
color: #2aaebd;
}
.border {
padding: 8px;
margin: 8px;
}
This seems a lot like not learning the tool before attempting to use it.
What's Wrong With CSS
We're currently in the midst of a CSS Zen Garden type excerise on our family of Q&A websites, which I affectionately refer to as "the Trilogy": Server Fault Super User Stack Overflow Meta Stack Overflow (In case you were wondering, yes, meta is the Star Wars Holiday Special.) These sites a...
Clinton Farleigh is now following The Typepad Team
May 13, 2010
Subscribe to Clinton Farleigh’s Recent Activity
