Here's what I'll do today and it would be great if you would join me.

On the website you're working on today, find a stylesheet and add the following rule.

```
*, *:hover {
cursor: none !important;
}
```

That forces you to use the keyboard. If you find something that makes it hard or impossible to do using the keyboard, fix it! Not just for yourself but for everyone relying on keyboard accessibility.

Edit: fixed code formatting

@matuzo took a second for me to realize my client (Elk) doesn't show the universal star selector and this is not some crazy new CSS syntax that just came out 😅

@mxbck hmmm...what about

```
* {}
```

or \* {}

or "* {}"

@matuzo Elk basically follows markdown formatting. So code fences are best, then I even get proper formatted code blocks.
@mxbck @matuzo oh that is fascinating. This makes me seriously consider Elk. Much of my timeline already does this anyway, including me. Does it also support inline `syntax`?