I want to have an ::after element on my select element.
This answer (https://stackoverflow.com/a/48992364/10551293) says that I cannot have ::after or ::before on input elements, does the select tag count as an input element? (It's not an though)
The following doesn't work:
select::after {
content: "hello";
}
How would I do this (without jQuery, preferably without javascript as well)?