workflow - Is there a way to add html attributes to an existing html element with Emmet? -
i've been looking around , can not find answer this.
suppose put cursor right between number 2 , greater sign in following h2's opening tag.
<h2>hello world!</h2> and type .text-uppercase gives me:
<h2.text-uppercase>hello world!</h2> after expand abbriviation , get
<h2 class="text-uppercase">hello world!</h2> is there way achieve method?
Comments
Post a Comment