For web developers(especially front end) writing html is an everyday chore. How about spicing things up. How about using CSS selectors not just to style and access elements, but to generate code? For example, what if you could write this… div#footer>p+span.links>a …and see this as the output? <div id=”footer”> <p></p> <span><a href=””></a></span> </div> Isn’t that […]

Read More →