HTML CSS examples for CSS Widget:Button
Entire Button Clickable
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> table {<!--from w w w. j ava 2 s. c o m--> background: #434242; border-radius: 30px; width: 20%; cellspacing:0; cellpadding:0; font-family: helvetica, arial, sans-serif; font-size: 12px; letter-spacing: 0.2px; } td { text-align: center; display:block; } .table a { padding: 8px; color: white; text-decoration: none; display:block; } </style> </head> <body> <table class="table"> <tbody> <tr> <td> <a href="" title="my site">MY SITE</a> </td> </tr> </tbody> </table> </body> </html>