Looking to place text over image in React

Advertisements I have a Splideslide element in react and am looking to move the description text over the image for each element. Currently the code I have is: import {useEffect, useState} from “react”; import styled from “styled-components”; import {Splide, SplideSlide} from “@splidejs/react-splide”; import “@splidejs/splide/dist/css/splide.min.css”; function Popular() { const [popular, setPopular] = useState([]); useEffect(() => {… Read More Looking to place text over image in React