To create an element with its class and / or id, I use Emmet and prescribe, for example:

.class_name 

and then press Tab. As a result, I get:

 .<div class="class_nam"></div> 

or

 .<class_name></class_name> 

or the element is not built at all. As you can see, an unnecessary period was added before the created element, and the last letter is missing in the class name. And with an explicit task tag, everything works fine. Please tell me what could be the error, and how to fix it?

  • one
    what editor is used? And what result is expected? - Grundy
  • @Grundy Sublime Text. I expect that the elements will be built without unnecessary points and with the "uncircumcised" class name, well, and in general will be built. - Alex Diumin

0