HTML CSS examples for CSS Form:input radio button
Create big Radio button
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> input {<!-- ww w .j av a2 s.c o m--> z-index: 3; width: 26px; height: 26px; -moz-appearance: none; } </style> </head> <body> <form action=""> <input type="radio" name="gender" value="male"> Male <br> <input type="radio" name="gender" value="female"> Female <br> <input type="radio" name="gender" value="other"> Other </form> <p> <b>Note:</b> When a user clicks on a radio-button, it becomes checked, and all other radio-buttons with equal name become unchecked. </p> </body> </html>