Is it possible to somehow use CSS rules applied to #elemento > .filho
in another element #dots
?
#elemento > .filho{...}
In case I would need <div id="dots"></div>
to receive the style of class filho
.
What I have is dots
out of inheritance, and I wanted to apply the style filho
to it.
<div id="elemento">
<div class="filho"></div>
</div>
<div id="dots"></div>