Create readonly radio button with disable state - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Create readonly radio button with disable state

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials