I am looking for something similar to
.class[height!="0"] .span
Every time I attempt to nest something like
div.item.class[height="0"]
it doesn't seem to work.
Can anyone provide assistance? :)
Here is additional code:
HTML
<div class="barWrapper">
<ul id ="tabs" class="nav-bar" data-tabs="tabs">
<li class="speed" style="height: 0%;"><a href="#Riesenslalom" data-toggle="tab"><span></span></a></li>
...
</ul>
</div>
CSS
div.item.topStatistic .topStatistic-content .first .left .statisticWrapper .barWrapper ul > li span{position:absolute; bottom:0; width:100%; height:40px; text-align:center;}
div.item.topStatistic .topStatistic-content .first .left .statisticWrapper .barWrapper ul > .speed span{background:url("icon_statistic_Speed.png") no-repeat transparent;}
div.item.topStatistic .topStatistic-content .first .left .statisticWrapper .barWrapper ul > .mixrace:not([height=0]) span{background:url("icon_statistic_active_MixRace.png") no-repeat transparent;}