# Opposite to html.anon

**URL:** https://meta.discourse.org/t/opposite-to-html-anon/139423
**Category:** Support
**Created:** [22 בינואר,‏ 2020,‏ 2:03pm UTC](https://meta.discourse.org/t/opposite-to-html-anon/139423 "2020-01-22T14:03:05Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![eextra](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eextra/32/170266_2.png) [@eextra](https://meta.discourse.org/u/eextra)
#### Post date: [22 בינואר,‏ 2020,‏ 2:03pm UTC](https://meta.discourse.org/t/opposite-to-html-anon/139423/1 "2020-01-22T14:03:05Z")

</div>

What’s the opposite class to this one _html.anon_ ?

i.e. it want to use in css _display: none_ but for all logged in

thx for help

---

<div class="post-metadata">

### Author: ![Falco](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/falco/32/179432_2.png) [@Falco](https://meta.discourse.org/u/Falco)
#### Post date: [22 בינואר,‏ 2020,‏ 9:33pm UTC](https://meta.discourse.org/t/opposite-to-html-anon/139423/2 "2020-01-22T21:33:15Z")

</div>

You can use [:not() CSS pseudo-class - CSS | MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/:not)

---

<div class="post-metadata">

### Author: ![eextra](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eextra/32/170266_2.png) [@eextra](https://meta.discourse.org/u/eextra)
#### Post date: [22 בינואר,‏ 2020,‏ 9:45pm UTC](https://meta.discourse.org/t/opposite-to-html-anon/139423/3 "2020-01-22T21:45:58Z")

</div>

Thanks, I was probably looking for it, but I can’t do it.

i try

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

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

```

ok its seems to be ok:

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

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [21 בפברואר,‏ 2020,‏ 9:53pm UTC](https://meta.discourse.org/t/opposite-to-html-anon/139423/4 "2020-02-21T21:53:00Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
