HTML CSS examples for CSS Form:input radio button
CSS3 radio button with CSS content
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div:after, input:after { content: "foobar"; } </style> </head> <!--from w w w . jav a 2 s . c om--> <body> <div> wibble </div> <input type="text"> <br> <input type="radio"> </body> </html>