I apologize but I am encountering an issue with my .css stylesheet that covers styles for my input type buttons as shown below.
input[type="submit"]
input[type="submit"]:hover
input[type="submit"]:focus
The first three selectors are functioning well, however, the input[type="submit"]:select
does not seem to be working. In an attempt to fix this, I also experimented with :selected
. Can you confirm if :visited
, :link
or other related codes apply to both <input type="button" />
and <input type="submit" />
?
I would greatly appreciate any guidance on resolving the issue with input[type="submit"]:select
.