2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Change deprecated html tags to text decoration classes (#29604)

This commit is contained in:
Matthieu Vignolle
2019-11-27 07:43:49 +01:00
committed by XhmikosR
parent 1977a661e6
commit 4de4874e72
3 changed files with 20 additions and 6 deletions
+4 -2
View File
@@ -109,8 +109,10 @@ Reset a text or link's color with `.text-reset`, so that it inherits the color f
## Text decoration
Remove a text decoration with a `.text-decoration-none` class.
Decorate text in components with text decoration classes.
{{< example >}}
<a href="#" class="text-decoration-none">Non-underlined link</a>
<p class="text-decoration-underline">This text has a line underneath it.</p>
<p class="text-decoration-line-through">This text has a line going through it.</p>
<a href="#" class="text-decoration-none">This link has its text decoration removed</a>
{{< /example >}}