Hallo Leute,
ich bräuchte schnell eure Unterstützung bei diesem Problem.
Mit diesem CSS kann ich breits erfolgreich die DIV's verändern, wenn ich genau 3 li habe.
Jetzt muss ich noch das ul selecten, wenn ich 3 li habe. Ich habe das bisher probiert, was nicht geklappt hat:
Was ist Lösung?
Danke für eure Hilfe.
ich bräuchte schnell eure Unterstützung bei diesem Problem.
HTML:
<ul>
<li></li>
<li></li>
<li></li>
</ul>
CSS:
li:nth-last-child(3):first-child ~ li .columnItems, li:nth-last-child(3):first-child .columnItems {
padding: 0 6px !important;
}
Mit diesem CSS kann ich breits erfolgreich die DIV's verändern, wenn ich genau 3 li habe.
Jetzt muss ich noch das ul selecten, wenn ich 3 li habe. Ich habe das bisher probiert, was nicht geklappt hat:
CSS:
ul:has(li:nth-last-child(3):first-child) {
padding: 0 9px 0 9px !important;
}
ul:has li:nth-last-child(3):first-child {
padding: 0 9px 0 9px !important;
}
ul < li:nth-last-child(3):first-child {
padding: 0 9px 0 9px !important;
}
Was ist Lösung?
Danke für eure Hilfe.