Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> input.larger { transform: scale(5); margin: 30px; } </style> </head> <body> <p>Default checkbox size:</p> <input type="checkbox" name="checkBox1" checked> <p>A larger checkbox:</p> <input type="checkbox" class="larger" name="checkBox2" checked> </body> </html>