Created
June 3, 2014 17:02
-
-
Save Kcko/2e474c7c70c27b5cb503 to your computer and use it in GitHub Desktop.
Checkbox-selectbox (popupbox)
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
form {height:1.2em;border:1px solid black; overflow:hidden; float:left; padding-right:0.5em;} | |
form:hover, form:active {height:5.2em; overflow:scroll; overflow-x:hidden;} | |
</style> | |
</head> | |
<body> | |
<form> | |
Komu poslat<br> | |
<input type="checkbox" name="names[]" value="Fero">Fero<br> | |
<input type="checkbox" name="names[]" value="Alena">Alena<br> | |
<input type="checkbox" name="names[]" value="Tomas">Tomas<br> | |
<input type="checkbox" name="names[]" value="Foreveryone">Foreveryone<br> | |
<input type="checkbox" name="names[]" value="Patres10">Patres10<br> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment