Answer the question
In order to leave comments, you need to log in
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*2
will generate
<div class="layout">
<ul>
<li></li>
<li></li>
</ul>
</div>
div.l
there 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 questionAsk a Question
731 491 924 answers to any question