Success
From Bootstrap - Demo Wiki
Color | ||
---|---|---|
Name | Success | |
Description | A light green color used mainly as background. | |
Provider | Skin, BootstrapComponents | |
Prefixes | bg , text , alert , badge |
|
Extension Components | Alert, Badge, Button, Card, Modal, Popover | |
Reference | getbootstrap.com - color |
Background
- Code
<div class="p-3 text-light bg-success" >
This is a div with light text over a success background!
</div>
- Result
This is a div with light text over a success background!
Text
- Code
<div class="p-3 text-success bg-light" >
This is a div with success text over a light background!
</div>
- Result
This is a div with success text over a light background!
Alert
- Code
<div class="alert alert-success" role="alert">
This is a success alert — check it out!
</div>
- Result
This is a success alert — check it out!
Badge
- Code
===Example heading <span class="badge badge-success">New</span>===
- Result
Example heading New
Card
- Code
<div class="card text-white bg-success mb-3" style="max-width: 18rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h5 class="card-title">Success card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
- Result
Header
Success card title
Some quick example text to build on the card title and make up the bulk of the card's content.