I have several divs in a class and I would like to hide a span. But I don't succeed and I don't realize why. I did that, but I see that it's not an ok method, from what I've searched here and on other platforms it can be used and that's how it doesn't work for me. What do you think is wrong?
.similar list_prod > span.promotion {
display: none;
}
<div class="similar list_prod">
<div class="proditem">
<div class="proditem_cover">
<a href="" title=" " alt=" "></a>
<span class="promotion">Test: Test</span>
</div>
</div>
</div>