Wrap strong element inside a label - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:label

Description

Wrap strong element inside a label

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials