Tipps und Tricks Filter

Ersatz für first und last Klasse durch CSS

Ab Contao 4.10 wird im Artikel zur Klasse mod_article kein 'first' und kein 'last' mehr mitgegeben.
Diese Funktionalität kann durch CSS ersetzt werden.

:first-child {
  css declarations;
}

Alternativen, je nach dem was / wie als "first" Element angesprochen werden soll wären:

:first-of-type {
  css declarations;
}
 
:nth-of-type(1) {
  css declarations;
}

Für das letzte Element dann vergleichbar:

:last-child {
  css declarations;
}
 
:last-of-type {
  css declarations;
}
 
:nth-last-of-type(1) {
  css declarations;
}