Created
July 26, 2011 13:11
-
-
Save esobchenko/1106718 to your computer and use it in GitHub Desktop.
font-size defect for select element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <style> | |
| select { | |
| border: solid 1px #ccc; | |
| font-size: 1.5em; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <select> | |
| <option value="foo">foo</option> | |
| <option value="bar">bar</option> | |
| </select> | |
| </body> | |
| </html> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"font-size" CSS option doesn't work without "border" option specified for select element. What the fuck?