“Творческий образ BG Image” Ответ

Фоновое изображение 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

Творческий образ BG Image

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

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

Ответы похожие на “Творческий образ BG Image”

Вопросы похожие на “Творческий образ BG Image”

Больше похожих ответов на “Творческий образ BG Image” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования