Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.NET IDE Problem

Status
Not open for further replies.

GhostWolf

Programmer
Jun 27, 2003
290
US
How do I convince the .NET IDE to quit reformatting my CSS code? e.g, I code
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top