| 
		
			Сообщение от Shaci
			
		
	 | 
	| 
		а случайно не вот такие?
	 | 
	
на счет этих hidden/visible, вполне логично их нет в 
спецификации CSS3 селекторов))
в вот такие есть:
input[type="checkbox"]
UPD:
<style type="text/css">
input[type="text"], input[type="checkbox"], input[type="submit"] {
    border: 1px solid red;
}
</style>
<input type="text" />
<input type="checkbox" />
<input type="submit" />
<input type="checkbox" checked="checked" />
<script type="text/javascript">
document.querySelector('input[type="checkbox"]:checked').onclick = function(){alert('clicked')};
</script>