Provides easy access to common HTML attributes, object style.
auto element = Element.make("a"); a.href = "cool.html"; // this is the same as a.setAttribute("href", "cool.html"); string where = a.href; // same as a.getAttribute("href");
See Implementation
Provides easy access to common HTML attributes, object style.