I am facing an issue with a CSS rule that looks like this:
div#tabstrip.tabstrip-vertical.k-widget.k-header.k-tabstrip div#tabstrip-4.k-content.k-state-active{
background-image: url("http://wwww.example.com/logo2.png") !important;
background-position: right center;
background-repeat: no-repeat;
}
The problem lies with #tabstrip-4 because I don't know how many different numbers it will have. I want to apply this rule to all elements, changing only the IDs like 2, 3, 4, 5, etc.
Is there a solution using pseudo selectors?