html - Any workaround to customise the radiobutton and display a CROSS instead of the Dot? -


hello, following piece of code. here, want instead of default dot, cross (x) should appear on it. kindly let me know possible or not, if how?

thanks

    <html>     <head>     <title>my page</title>     </head>     <body>     <form name="myform" action="http://www.mydomain.com/myformhandler.cgi" method="post">     <div align="center"><br>     <input type="radio" name="group1" value="milk"> milk<br>     <input type="radio" name="group1" value="butter" checked> butter<br>     <input type="radio" name="group1" value="cheese"> cheese     <hr>     <input type="radio" name="group2" value="water"> water<br>     <input type="radio" name="group2" value="beer"> beer<br>     <input type="radio" name="group2" value="wine" checked> wine<br>     </div>     </form>     </body>     </html> 

check this article on styling radio-buttons css , javascript

add. another approach , a little bit more...


Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -