“Obraz BG -wiwind” Kod odpowiedzi

obraz tła Tailwind CSS

<!--
Arbitrary values
If you need to use a one-off background-image value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
-->

<div class="bg-[url('/img/hero-pattern.svg')]">
  <!-- Your Code -->
</div>
Condemned Cat

Obraz BG -wiwind

  // tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        backgroundImage: theme => ({
+         'hero-pattern': "url('/img/hero-pattern.svg')",
+         'footer-texture': "url('/img/footer-texture.png')",
        })
      }
    }
  }
Smoggy Sandpiper

Image tła Tailwind

<div className="bg-[url('../public/assets/images/banner.svg')]">
Roberto Espinoza

Odpowiedzi podobne do “Obraz BG -wiwind”

Pytania podobne do “Obraz BG -wiwind”

Więcej pokrewnych odpowiedzi na “Obraz BG -wiwind” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu