Articles → BOOTSTRAP → Button Sizes Classes In Bootstrap
Button Sizes Classes In Bootstrap
Example
 
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
   <head>
      <meta charset="utf-8" />
      <title></title>
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
   </head>
   <body>
      <button type="button" class="btn btn-primary btn-lg">Primary</button>
      <button type="button" class="btn btn-primary btn-sm">Primary Small</button>
      <button type="button" class="btn btn-primary btn-xs">Primary Xtra Small</button>
   </body>
</html>
Output
 
Click to Enlarge
| Posted By  -   | Karan Gupta | 
|   | 
| Posted On  -   | Thursday, September 23, 2021 |