HTML CSS examples for CSS Widget:Button
Create readonly radio button with disable state
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from w ww .j a v a 2 s. c o m--> <body> <input type="radio" name="radioname" disabled> Option 1 <input type="radio" name="radioname" disabled> Option 2 </body> </html>