Skip to content

Instantly share code, notes, and snippets.

@siggiarni
Created February 5, 2014 11:53
Show Gist options
  • Save siggiarni/8822088 to your computer and use it in GitHub Desktop.
Save siggiarni/8822088 to your computer and use it in GitHub Desktop.
Font substitution work in dropdowns
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<link rel="stylesheet" type="text/css" href="http://cdn.webrupee.com/font">
<style>
body,html,*{font-family: 'WebRupee';}
option,select{ font-family:inherit;}
</style>
</head>
<body>
<select>
<option>Rs.</option>
<option>Rs </option>
<option>Rs</option>
</select>
<p class="WebRupee">Rs.</p>
</body>
</html>
@siggiarni
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment