]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/image-replacement.md
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / docs / utilities / image-replacement.md
CommitLineData
91e44d91
S
1---
2layout: docs
3title: Image replacement
4group: utilities
5---
6
7Utilize the `.text-hide` class or mixin to help replace an element's text content with a background image.
8
9{% highlight html %}
10<h1 class="text-hide">Custom heading</h1>
11{% endhighlight %}
12
13{% highlight scss %}
14// Usage as a mixin
15.heading {
16 @include text-hide;
17}
18{% endhighlight %}