Mam problem, ponieważ chce sformatować checkbox, ale widzę, że się nie da w porównaniu to innych inputów.
<!DOCTYPE html> <HTML> <HEAD> <title>moja strona</title> <meta charset="utf8"> <style> input[type="text"][disabled] { background: red; } input[type="checkbox"][disabled] { background: red; } </style> </HEAD> <BODY> <input type="text" disabled /><br/> <input type="checkbox" disabled /> </BODY> </HTML>
Input typu text wypełnia się na czerwono, a niestety checkbox już nie - jakieś pomysły ?