<div class="css-properties-group">
    <% _.each(propertyItems, function(propertyItem, index){ %>
        <div class="css-property-item">
            <input type = "checkbox" id="<%= key %><%= index %>" class="copy-css-check">
            <label class="copy-css-label" for="<%= key %><%= index %>">
                <span class="propertyItemText property-name"><%= propertyItem.property%></span>
                <span class="propertyItemText css-colon">:</span>
                <span title='<%= propertyItem.value%>' class="propertyItemText property-value"><%= propertyItem.value%></span>
                <span class="propertyItemText css-semi-colon">;</span>
            </label>
        </div>
    <% }); %>
</div>
