Skip to content

Tag: html

Horizontal scroll using arrow keys

I use a horizontal scroll on a page I built. It’s inside a div, named it with a class, and I want to use the arrows keys to scroll. For it to scroll with the keys, I need to click somewhere on it. Is it possible to use the keys directly on first load of the page without necessarily clicking

Set autocomplete off for Formik field

To set the autocomplete off for a simple input it must be done like this: <input type=”text” autocomplete=”off”> In this case, there is a Formik Field and the input looks like this: and it seems that adding autocomplte=”off” doesn’t work in this case: Any ideas?…