[ Background-clip : text ] not working?

How can I know when a feature is not yet implemented in BS ?
Is there a workaround ?
Thanks

background-clip is just css, nothing to do with bootstrap or bss

you would need to create something in your css

HTML:

<div class="container bgclip">
        <div class="row">
            <div class="col-md-12">
                <h1 class="text-center fw-bolder" style="font-size: 8rem;">This is some text, just to show how background clip text works. Have a nice day :)</h1>
            </div>
        </div>
    </div>

CSS:

.bgclip {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://source.unsplash.com/RAZU_R66vUc);
}
2 Likes

This is brilliant Richards ! I just needed to use your code with sublime text as external editor.

Just wonder why I need to add
-webkit-background-clip: text;

But this is another story

1 Like