2016-09-09 06:48:17 +02:00
|
|
|
---
|
|
|
|
layout: docs
|
|
|
|
title: Image replacement
|
2017-05-28 20:25:59 +02:00
|
|
|
description: Swap text for background images with the image replacement class.
|
2016-09-09 06:48:17 +02:00
|
|
|
group: utilities
|
2017-05-28 20:25:59 +02:00
|
|
|
toc: true
|
2016-09-09 06:48:17 +02:00
|
|
|
---
|
|
|
|
|
2018-04-16 08:27:06 +02:00
|
|
|
{% 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.
|
2018-04-16 08:27:06 +02:00
|
|
|
{% endcapture %}
|
|
|
|
{% include callout.html content=callout type="warning" %}
|
|
|
|
|
2016-09-09 06:48:17 +02:00
|
|
|
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
|
|
|
|
2017-06-13 12:34:58 +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 %}
|
2018-06-21 06:31:38 +02:00
|
|
|
<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 %}
|