Is there a secret tag in HTML (4) that I can utilize for CSS differentiations?
tag.myclass tag.mysubclass h1 { }
without causing any visible changes to the rendered HTML?
I have sections in a form that are part of different categories. When opening them in lightboxes (a long explanation involving DOM operations and such, but not crucial), I don't want to use the typical div class=x
or span class=y
for styling subsequent elements because it would require adjusting margins and paddings.
An invisible container tag would be perfect for situations like these.