css - what's the default hex/rgb/color when you hover the input type button? -
what's default hex/rgb/color when hover input type button? <input type="button" value="hover here"/> or <button>"hover here"</button> , when hover button what's hex color?
when hover <input type="button/>" or <button> color same note selector is:
input[type="button"], input[type="submit"], input[type="reset"], button { ... } on other hand color when hover depends on browser because each browser has it's own styling e.g
chrome: buttonface rgb(221, 221, 221) = #dddddd
ie: rgb(166, 244, 255) = #a6f4ff
ff: -moz-buttonhoverface (define gradient in hover)
and above depends on theme being used.
Comments
Post a Comment