0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00
Bootstrap/site/docs/4.1/utilities/image-replacement.md

34 lines
1.0 KiB
Markdown
Raw Normal View History

---
layout: docs
title: Image replacement
2017-05-28 20:25:59 +02:00
description: Swap text for background images with the image replacement class.
group: utilities
2017-05-28 20:25:59 +02:00
toc: true
---
{% capture callout %}
##### Warning
2018-04-17 19:30:16 +02:00
The `text-hide()` class and mixin has been deprecated as of v4.1. It will be removed entirely in v5.
{% endcapture %}
{% include callout.html content=callout type="warning" %}
Utilize the `.text-hide` class or mixin to help replace an element's text content with a background image.
{% highlight html %}
<h1 class="text-hide">Custom heading</h1>
{% endhighlight %}
{% highlight scss %}
// Usage as a mixin
.heading {
@include text-hide;
}
{% endhighlight %}
2017-06-13 03:40:19 +02:00
Use the `.text-hide` class to maintain the accessibility and SEO benefits of heading tags, but want to utilize a `background-image` instead of text.
2017-06-13 03:40:19 +02:00
2018-03-14 16:44:38 +01:00
{% capture example %}
<h1 class="text-hide" style="background-image: url('/docs/{{ site.docs_version }}/assets/brand/bootstrap-solid.svg'); width: 50px; height: 50px;">Bootstrap</h1>
2018-03-14 16:44:38 +01:00
{% endcapture %}
{% include example.html content=example %}