Let me start by saying that I love this IDE, everything is very well integrated (CVS, database, and Help/Manuals), and it makes working in my favourite web scripting language (php of course =) all the more enjoyable..
But one thing I recently discovered has me perplexed...
Currently, if I go "File" -> "New" and select "New Style.css" to open a style sheet it populates it with the folowing:
<STYLE type="text/css">
BODY, TD {
}
A {
}
A:Hover {
}
</STYLE> |
Great, but the problem is that stylesheets themselves are NOT supposed to contain <STYLE> tags. Browsers will not interpret the css info if these tags are in the stylesheet.
Well, silly, just remove the tags you say?
Sure, but then I lose all intellisense functionality in my CSS. I thought this functionality would be based on the file extension (as well as tags for style embedded directly in html obviously) ???
Am I missing something? Is there some way to get intellisense back in stylesheets without adding the <STYLE> tags back in?