mercredi 27 février 2019

Emmet wrap with abbreviation

I'm trying to make a checklist in a more time saving way. I have to do this thing underneath for every page like 17 times. So to save some time I was hoping for Emmet to be te solution. What's the abbreviation to produce the following code after selecting the lines below:

Video
DVD
CD

To produce:

<div class="form-group">
   <div class="col-sm-12">
     <div class="checkbox">
        <label>
          <input type="checkbox" name="item1" value="Done" /> Video
        </label>
      </div>
    </div>
</div> <!-- form-group -->
<div class="form-group">
   <div class="col-sm-12">
     <div class="checkbox">
        <label>
          <input type="checkbox" name="item2" value="Done" /> DVD
        </label>
      </div>
    </div>
</div> <!-- form-group -->
<div class="form-group">
   <div class="col-sm-12">
     <div class="checkbox">
        <label>
          <input type="checkbox" name="item3" value="Done" /> CD
        </label>
      </div>
    </div>
</div> <!-- form-group -->




Aucun commentaire:

Enregistrer un commentaire