I have a .css stylesheet that has styles for my input type buttons like the following.
input[type="submit"]
input[type="submit"]:hover
input[type="submit"]:focus
the above three works but input[type="submit"]:select
does not work. I even tried :selected
. Does :visited
, :link
etc applies for <input type="button" />
and <input type="submit" />
?
Please help me how to get input[type="submit"]:select
to working
Because :select
is not a valid CSS pseudo-class.