div :nth-child(+3n/**/-2) { background-color:black; } div :nth-child(+3n/**/-2) { font-size:12px; } div :nth-child(+3n-/**/2) { text-decoration: underline; } div :nth-child(+3n-2/**/) { border-left-width: 1px; } div :nth-child(+3n/**/-2) { border-top-width: 1px; } div :nth-child(+3n/**/-2) { border-bottom-width: 1px; } div :nth-child(+3n-/**/2) { border-right-width: 1px; } div :nth-child(+3n-2/**/) { border-style: solid; border-color: blue;}
/* valid but will not match anything */ div :nth-child(-n/**/-2) { color:red; } div :nth-child(-n/**/-2) { color:red; } div :nth-child(-n-/**/2) { color:red; } div :nth-child(-n-2/**/) { color:red; } div :nth-child(-1n/**/-2) { color:red; } div :nth-child(-1n/**/-2) { color:red; } div :nth-child(-1n-/**/2) { color:red; } div :nth-child(-1n-2/**/) { color:red; }
/* invalid */ div :nth-child(-/**/ n-2) { color:red; } div :nth-child(- /**/n-2) { color:red; } div :nth-child(+/**/ n-2) { color:red; } div :nth-child(+ /**/n-2) { color:red; } div :nth-child(+3/**/n-2) { color:red; } div :nth-child(-/**/n-2) {color: red;}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.