Hi,
What kind of convention do you (or your company) run on filenames and CSS class names? For example, let's say you have these class names: window, window top, window top left, window top right. How do you name those class names (and such filenames)?
Currently I am doing the following:
.window {
background: url(images/window.png);
}
.window-top {
background: url(images/window-top.png);
}
.window-top-left {
background: url(images/window-top-left.png);
}
What other ways are there?