31

I did not find the answer on documentation for this question.

As we know, div.container gives

<div class="container">

However, what abbreviation shall be used for

<div class="row placeholders">

Anyone knows? Thanks.

MattDMo
  • 100,794
  • 21
  • 241
  • 231
day
  • 1,047
  • 3
  • 11
  • 20

1 Answers1

63

From the Emmet Cheat Sheet:

p.class1.class2.class3
    <p class="class1 class2 class3"></p>

So, div.row.placeholders will give you:

<div class="row placeholders"></div>
MattDMo
  • 100,794
  • 21
  • 241
  • 231
  • Thanks a lot, MattDMo. I haven't found solution for multiple attributes. How about the shortcut for this one? – day Sep 09 '15 at 02:26
  • @day the link I provided gives details on all of Emmet's capabilities. Look at the "Custom Attributes" section. – MattDMo Sep 09 '15 at 11:28