The more I work with css the more annoying it gets. Using the latest WeBuilder 2010 10.1.0.119
Here is how I have it setup:
Preferences > Language Options > CSS >
[x] Auto complete CSS rule braces
[x] Multi lines, Opening braces
------ [x] on the same line as selector
Problem: Editor adds 2 extra lines at the bottom of closing bracket.
Code: Select all
1. #my_id {
2. cursor
3.}
4.
5.
6. #my_other_id {
7. cursor
8.}
9.
10.
eg.
Code: Select all
1. #my_id {
2. cursor
3.}
4. #my_other_id {
5. cursor
6.}