Text inside of a radio button - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Text inside of a radio button

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
label {<!--from  ww w  .j  a v a 2  s  .c  o m-->
   position:relative;
   left:-14px;
   top:-4px;
   font-size:9pt;
   opacity:.6;
}
</style> 
 </head> 
 <body> 
  <input type="radio" name="one" id="one"> 
  <label for="one">L</label> 
  <input type="radio" name="one" id="two"> 
  <label for="two">L</label> 
  <input type="radio" name="one" id="three"> 
  <label for="three">L</label> 
  <input type="radio" name="one" id="four"> 
  <label for="four">L</label>  
 </body>
</html>

Related Tutorials