css - Can't select checkboxes in Modal dialog -
trying select of checkboxes in modal dialog here: http://ezami.com/ - 1 pops after clicking top right ribbon. none of them seem work. did little research , testing using z-index nothing seem work far, z-index being set modal value , seems working fine.
i have sample ready logic want implement. image/colour can anything.demo link
<html> <head> <title>checkbox</title> <style> input[type=checkbox] { display:none; } input[type=checkbox] + label { background: #999; height: 16px; width: 16px; display:inline-block; padding: 0 0 0 0px; } input[type=checkbox]:checked + label { background: #0080ff; height: 16px; width: 16px; display:inline-block; padding: 0 0 0 0px; } </style> </head> <body> <p> <input type='checkbox' name='thing' value='valuable' id="thing"/><label for="thing"></label> </body> </html>
Comments
Post a Comment