Suppress checkboxes in CSS?
March 14, 2008 11:05 AM
Subscribe
Is it possible to make checkboxes invisible using CSS?
I've been using a TiddlyWiki for keeping my life in order (GTD), recently fell off the wagon, and am now getting back on using a newer-generation TW.
I've thrown together a stylesheet for printing on 3x5 index cards that seems to work fine, but all the "next action" items have checkboxes next to them that you check when you've completed that action, and these take up tons of real estate on the cards when they print. I've got the text resized smaller for cards, so what I'd like to do is come up with a CSS statement that will either do the equivalent of "display:none" on the boxes themselves, or failing that, resize them down a bit.
I know very little CSS, but Googling fails me so far, so I'm guessing the answer is "no." Do any of you web gurus have the ability to pleasantly surprise me?
posted by middleclasstool to computers & internet (7 comments total)
1 user marked this as a favorite
input[type=checkbox] { display: none; }Won't work in IE. Should work in Firefox.
posted by SemiSophos at 11:10 AM on March 14