Does the Style Style element not exist in the context menu when creating a CSS file in Visual Studio 2013?

I want to create a CSS file in Visual Studio 2013. but Style> element does not exist in the context menu. how to get it?

enter image description here

my toolbar:

enter image description here

+6
source share
2 answers

The Style Builder dialog box (otherwise known as the style master) is deprecated. It still exists in the WebForms editor (in the "Format → New Style" section, but only after loading the design), but not in the new HTML and CSS editors.

The reason for this is that the dialog depends on the (deprecated) HTML constructor and because it is very outdated. Instead, you should consider writing styles in a CSS editor that has several advanced features (for example, CSS3 support, vendor prefixes, snippets, a color picker, and a number of other editing improvements).

+8
source

So I added Build Style in Visual Studio 2013!

enter image description here

Here's how to add a style toolbar.

enter image description here

Or

You can link to this link!

Edit

Here are the features of the Visual Studio 2013 web editor - CSS, this may be a good link for you!

0
source

All Articles