Is there a way to create a certain html wrapper element for js purposes only, who doesn't bother the css?
So I can still use the > sign as selector, like the example.
Example:
.container > .row {
margin:10px;
}
<div class="container">
<div id="divWrapper123">
<div class="row">
</div>
</div>
</div>