skip to Main Content

Tailwind background image not showing – CSS

The background image is not showing. I also tried "bg-[url('/image/example.jpeg')" tailwind.config.js theme: { extend: { colors: { darkBlue: "#0D1A32", }, backgroundImage: { "hero-image": "url('/app/images/lentcm93p_1.jpg')", }, }, }, plugins: [], }; Page.js export default function Home() { return ( <> <div…

VIEW QUESTION

Bracket wrong in react – Reactjs

Can not see why this isn't working. This is a react.js app App.js import {useState} from "react"; import './App.css'; function App() { const [age, setAge] = useState(0); const [inputValue, setInputValue] = useState(""); const [showText, setShowText] = useState(true); const [textColor, setTextColor]…

VIEW QUESTION
Back To Top
Search