So emacs's auto-indentation for CSS is driving me batty. Here is what I like CSS to look like:
#foo ul.bar {
....
}
#foo ul.bar li {
....
}
#foo ul.bar li a {
....
}
This is what emacs gives me with its auto-indentation:
#foo ul.bar {
....
}
#foo ul.bar li {
....
}
#foo ul.bar li a {
....
}
I like to keep my styles progressively indented if they use the cascade. However, emacs will autoindent everything to the same level.
Anything I can do?