“Imagem BG de Tailwind BG” Respostas de código

Imagem de fundo CSS do 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

Imagem BG de Tailwind BG

  // 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

Tailwind de imagem-imagem

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

Respostas semelhantes a “Imagem BG de Tailwind BG”

Perguntas semelhantes a “Imagem BG de Tailwind BG”

Mais respostas relacionadas para “Imagem BG de Tailwind BG” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código