diff options
| author | Benedikt Willi <[email protected]> | 2023-06-19 10:50:44 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2023-06-25 14:47:15 -0700 |
| commit | 787dfea8a29db138d5ff6100fc894f457ccd4169 (patch) | |
| tree | 3a0dfeacaa11b6870e257c1042e51268f04e1242 | |
| parent | 6dc18c6adccc1edef22aeaf22e21bce29dc740f0 (diff) | |
| download | bootstrap-787dfea8a29db138d5ff6100fc894f457ccd4169.tar.xz bootstrap-787dfea8a29db138d5ff6100fc894f457ccd4169.zip | |
Explicitly add missing opacity-0 helper class example for clarity.
Add a missing opacity-0 helper class example. From existing examples, it wasn't obvious to me that this class exists. This commit makes it a bit more explicit.
| -rw-r--r-- | site/content/docs/5.3/utilities/opacity.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/site/content/docs/5.3/utilities/opacity.md b/site/content/docs/5.3/utilities/opacity.md index 5d253a77c..891b46b8f 100644 --- a/site/content/docs/5.3/utilities/opacity.md +++ b/site/content/docs/5.3/utilities/opacity.md @@ -15,6 +15,7 @@ Set the `opacity` of an element using `.opacity-{value}` utilities. <div class="opacity-75 p-3 m-2 bg-primary text-light fw-bold rounded">75%</div> <div class="opacity-50 p-3 m-2 bg-primary text-light fw-bold rounded">50%</div> <div class="opacity-25 p-3 m-2 bg-primary text-light fw-bold rounded">25%</div> + <div class="opacity-0 p-3 m-2 bg-primary text-light fw-bold rounded">0%</div> </div> ```html @@ -22,6 +23,7 @@ Set the `opacity` of an element using `.opacity-{value}` utilities. <div class="opacity-75">...</div> <div class="opacity-50">...</div> <div class="opacity-25">...</div> +<div class="opacity-0">...</div> ``` ## CSS |
