Reputation: 9424
I want to create a CSS file in Visual Studio 2013. but Build Style item not exist in context menu. how to get it?
my toolbar:
Upvotes: 7
Views: 16546
Reputation: 6103
This is the way I added Build Style
in Visual Studio 2013 !
This is how to add Style Sheet Toolbar
Or
You can reference this link !
Edit
Here is Visual Studio 2013 Web Editor Features - CSS , this may be a good reference for you !
Upvotes: 0
Reputation: 28456
The Style Builder dialog (aka New Style wizard) is deprecated. It still exists in the WebForms editor (under Format -> New Style, but only after you've loaded design view), but not in the new HTML and CSS editors.
The reason for this is because the dialog depends on the (also deprecated) HTML Designer, and because it is very out of date. Instead, you should consider writing your styles in the CSS editor, which has some better features (such as supporting CSS3, vendor prefixes, snippets, color picker, and several other editing improvements).
Upvotes: 8