A
A
Andrey Tokmakov2017-04-19 07:23:06
phpstorm
Andrey Tokmakov, 2017-04-19 07:23:06

How to make Emmet friends with css in phpstorm?

There is a trick in phpstorm, we write <div class="l">and the editor offers a quick insertion of a class with the letter l from the list of classes in the css file.
And there is emmet, which allows you to quickly write code - it div.layout>ul>li*2will generate

<div class="layout">
    <ul>
        <li></li>
        <li></li>
    </ul>
</div>

So, the question is, when we write div.lthere are no options for inserting a class, as in the first case, is there any way to make emmet friends with css, so that with this writing it would also offer the prescribed classes?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question