Whitespace handling with CSS
Posted: Sun May 22, 2011 8:29 pm
Whenever I select Format and Indent while editing a CSS file, Oxygen removes the whitespace between class names. Example:
becomes
Which breaks the stylesheet. I've learned not to use this feature while editing CSS, but it would be better if it would work. I've tried various combinations of settings under Preferences > Format > CSS, but no luck. Am I missing something?
Steve
Code: Select all
.slide_thumbs .slide .slide_text {
display: none;
}
Code: Select all
.slide_thumbs.slide.slide_text {
display: none;
}
Steve