यहां चयनकर्ता वुफू मार्कअप के लिए विशिष्ट हैं, लेकिन काम पर अवधारणाएं किसी भी रूप में काम कर सकती हैं। समग्र विचार यह है कि आप अपनी अस्पष्टता को शून्य पर सेट करके डिफ़ॉल्ट रेडियो बटन और चेकबॉक्स को अदृश्य बनाते हैं, और उन्हें ग्राफिक्स से बदल देते हैं। फिर: चेक किए गए चयनकर्ता का उपयोग उनके चेक किए गए और अनियंत्रित संस्करणों के बीच ग्राफिक्स को वैकल्पिक करने के लिए करें।
/* Hide the original radios and checkboxes (but still accessible) :not(#foo) > is a rule filter to block browsers that don't support that selector from applying rules they shouldn't */ li:not(#foo) > fieldset > div > span > input(type='radio'), li:not(#foo) > fieldset > div > span > input(type='checkbox') ( /* Hide the input, but have it still be clickable */ opacity: 0; float: left; width: 18px; ) li:not(#foo) > fieldset > div > span > input(type='radio') + label, li:not(#foo) > fieldset > div > span > input(type='checkbox') + label ( margin: 0; clear: none; /* Left padding makes room for image */ padding: 5px 0 4px 24px; /* Make look clickable because they are */ cursor: pointer; background: url(off.png.webp) left center no-repeat; ) /* Change from unchecked to checked graphic */ li:not(#foo) > fieldset > div > span > input(type='radio'):checked + label ( background-image: url(radio.png.webp); ) li:not(#foo) > fieldset > div > span > input(type='checkbox'):checked + label ( background-image: url(check.png.webp); )