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

36 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
---
{{< callout warning >}}
##### Warning
2018-11-21 14:11:31 +01:00
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.
{{< /callout >}}
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>
{{< /highlight >}}
{{< highlight scss >}}
// Usage as a mixin
.heading {
@include text-hide;
}
{{< /highlight >}}
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-11-21 14:11:31 +01:00
<div class="bd-example">
<h1 class="text-hide" style="background-image: url('/docs/{{< param docs_version >}}/assets/brand/bootstrap-solid.svg'); width: 50px; height: 50px;">Bootstrap</h1>
2018-11-21 14:11:31 +01:00
</div>
{{< highlight html >}}
2019-01-28 22:17:14 +01:00
<h1 class="text-hide" style="background-image: url('...');">Bootstrap</h1>
{{< /highlight >}}