Join the Webstudio community

Updated 4 weeks ago

How can I change a number input fiel?

How can I give a number input a plus and minus button at the sides instead of the up and down buttons?

Probably js and buttons, right?
But how can I remove the up and down buttons?
c
J
2 comments
Chatgpt suggests this:
/* Remove number input spin buttons */
.number-input-container input[type="number"]::-webkit-outer-spin-button,
.number-input-container input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

But I can´t use that css in webstudio
Yeah the solution would require custom code
Add a reply
Sign up and join the conversation on Discord