Files
2016-08-24 19:51:41 +02:00

15 lines
539 B
HTML

<script type="application/json" id="selectors">
[{
"selector": "address:not(:last-of-type)",
"match": ["1", "2"]
}]
</script>
<div id="testDOM">
<div>
<address id="1" class="red">A first address that should have a green background</address>
<address id="2" class="red">A second address that should have a green background</address>
<address id="3" >A third address with normal background</address>
This div should have three addresses above it.
</div>
</div>