Open In App

How to add a Background Image using Tailwind CSS ?

Last Updated : 05 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

To add a background image using Tailwind CSS, you can use the bg-[image-class] utility class, where [image-class] corresponds to a predefined set of background image classes. You also need to set the actual image URL using inline or external styles.

Syntax

<div class="bg-cover bg-center h-screen" 
style="background-image: url('your-image-url.jpg');">
<!-- Your content here -->
</div>

Classes

Classes Description
bg-[image-class] Defines background image properties with options such as cover, contain, center, and more, for styling backgrounds.
h-screen Sets the height of the container to the full-screen height, making it occupy the entire vertical space of the viewport.
style Attribute The inline style attribute is used to set the background image using the background-image property, providing specific image styling.

Key Features

  • Background Image Options: Tailwind offers various background image classes (bg-cover, bg-contain, etc.) for different sizing and positioning options.
  • Responsive Design: Easily create responsive background images using Tailwind’s responsive variants.
  • Inline Styles: Incorporate inline styles for additional customization, such as setting the actual image URL.

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads