À l'opposé de html.anon

Quelle est la classe opposée à html.anon ?

C’est-à-dire, je souhaite utiliser en CSS display: none pour tous les utilisateurs connectés.

Merci pour l’aide.

Vous pouvez utiliser :not() - CSS | MDN

Merci, je le cherchais probablement, mais je n’y arrive pas.

J’essaie

 html :not.anon .d-header-icons {
  display: none;
}

:not  html.anon .d-header-icons {
  display: none;
}

ok, ça semble fonctionner :

 html:not(.anon) .d-header-icons {
  display: none;
}