Skip to content

Instantly share code, notes, and snippets.

@exohuman
Created May 30, 2013 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exohuman/5678366 to your computer and use it in GitHub Desktop.
Save exohuman/5678366 to your computer and use it in GitHub Desktop.
Chrome select box bug
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<select class="test">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
</select>
<style>
select.test
{
background: transparent;
color: #FFF;
}
select.test:hover
{
background: #FFF;
color: #000;
}
</style>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment