Samiey Mehdi
Samiey Mehdi

Reputation: 9424

Build Style item not exist in context menu in creating CSS file in Visual Studio 2013?

I want to create a CSS file in Visual Studio 2013. but Build Style item not exist in context menu. how to get it?

enter image description here

my toolbar:

enter image description here

Upvotes: 7

Views: 16546

Answers (2)

zey
zey

Reputation: 6103

This is the way I added Build Style in Visual Studio 2013 !

enter image description here

This is how to add Style Sheet Toolbar

enter image description here

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

Jimmy
Jimmy

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

Related Questions