HTML CSS examples for CSS Widget:Button
Two font types in one button style
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #a {<!-- www . j a v a 2 s . c om--> font-size:13px; } #b { font-size:41px; } </style> </head> <body> <button> <span id="a">Lorem</span> <span id="b">Lor</span> </button> </body> </html>