I am trying to set a background image to a div, but somehow I have problems to understand the selection of the css class attribute.
The identifier which I want to use is the first div (id="ext-element-283") mainmenuitem and x-treelist-row-over and the lower div (id="ext-element-281") menu-po-trek.
How do I have to define the css class selector to apply the css to the specific div. (id="ext-element-281)"
.mainmenuitem .x-treelist-row-over .menu-po-trek {
height: 64px;
vertical-align: middle !important;
background-size: 44px 33px;
background-image: url("/icons/pltx2/po.png") !important;
background-repeat: no-repeat;
background-position: center;
}
<div class="x-treelist-row mainmenuitem x-treelist-row-over" id="ext-element-283">
<div class="x-treelist-item-wrap" id="ext-element-258" style="margin-left: 0px;">
<div class="x-treelist-item-icon menu-po-trek" id="ext-element-281"></div>
<div class="x-treelist-item-text" id="ext-element-280">Po</div>
<div class="x-treelist-item-expander"></div>
</div>
</div>