Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> input.larger { width: 50px; height: 50px; } </style> </head> <body> <h2>Beispiel für die Größe eines Kontrollkästchens</h2> <p>Standardgröße des Kontrollkästchens:</p> <input type="checkbox" name="checkBox1" checked> <p>Ein größeres Kontrollkästchen:</p> <input type="checkbox" class="larger" name="checkBox2" checked> </body> </html>