HTML CSS examples for HTML Tag:label
Wrap strong element inside a label
<html lang="en"> <head> <style> .wrappable {<!-- www. ja va 2s . c o m--> display:inline-block; width:100px; border:2px solid Chartreuse; } </style> </head> <body translate="no"> <label class="wrappable"> <strong>Total Expenses</strong> </label> </body> </html>