How do I convince the .NET IDE to quit reformatting my CSS code? e.g, I code
and the IDE changes it to
I thought I'd found the solution when I unselected all the Automatic Formatting options I could find under Tools/Options, (there's not one for CSS), but the IDE continues to misbehave.
I should note that I'm just learning ASP.NET using .NET '03.
Code:
<style type="text/css">
.tdr { text-align: right; }
.tdc { text-align: center; }
.tdl { text-align: left; }
</style>
and the IDE changes it to
Code:
<style type="text/css"> .tdr { font-weight: bold; text-align: right; }
.tdc { font-weight: bold; text-align: center; }
.tdl { font-weight: bold; text-align: left; }
</style>
I thought I'd found the solution when I unselected all the Automatic Formatting options I could find under Tools/Options, (there's not one for CSS), but the IDE continues to misbehave.
I should note that I'm just learning ASP.NET using .NET '03.