HamlPy icon indicating copy to clipboard operation
HamlPy copied to clipboard

Element id is ignored when given after classes

Open adrianzamorski opened this issue 12 years ago • 0 comments

If you create an element, for example

#element_id.element_class

you'll get

<div id="element_id" class="element_class"></div>

but if you the id after the class:

.element_class#element_id

you'll get a div with class but without the id:

<div class="element_class"></div>

adrianzamorski avatar Feb 12 '13 11:02 adrianzamorski