Created
December 2, 2012 19:31
-
-
Save jacekd/4190564 to your computer and use it in GitHub Desktop.
A CodePen by Jacek Dominiak.
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
<select multiple='multiple' id="select"> | |
<option>one</option> | |
<option>two</option> | |
<option>three</option> | |
<option>four</option> | |
</select> | |
<div id="up"></div> | |
<div id="down"></div> |
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
#up, #down { | |
width: 0; | |
hegith: 0; | |
border-left: 5px solid transparent; | |
border-right: 5px solid transparent; | |
margin: 10px; | |
} | |
#up { | |
border-bottom: 5px solid #111; | |
} | |
#down { | |
border-top: 5px solid #111; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment