我的 css 文件中有以下内容,但 css 区域不起作用。没有可单击的折叠或展开图标。
但是 C# 区域正在工作,只是 css 区域没有。
/*#region shared styles */
.blah { background-color: red; }
.foo { line-height: 1.2em; }
/*endregion */
我的 css 文件中有以下内容,但 css 区域不起作用。没有可单击的折叠或展开图标。
但是 C# 区域正在工作,只是 css 区域没有。
/*#region shared styles */
.blah { background-color: red; }
.foo { line-height: 1.2em; }
/*endregion */
Your missing the '#' between the '*' and 'endregion'
try
/*#region shared styles */
.blah { background-color: red; }
.foo { line-height: 1.2em; }
/*#endregion */
不知道为什么,但是这样做之后,它现在可以工作了:
region
css文件,然后按tab
两次之后,它适用于新创建的 CSS 区域。但我的旧 CSS 区域仍然无法正常工作。
Visual Studio 不支持 CSS 区域。
您需要安装Web Essentials 2012 扩展,它添加了 CSS 区域以及许多其他不错的功能。