skip to Main Content

Html – Trying to resolve justify position in flex div

I have an issue which happend frequently. here's my code: <div className="flex flex-col w-full mb-3"> <div className="flex flex-row w-full"> { Vege && <p className="mr-1 text-sm leading-6 text-green-500">{Vege ? "VÉGÉ • " : ""}</p> } <p className="font-bold">{Titre}</p> <p className="justify-end">{Prix} €</p> </div>…

VIEW QUESTION

Reactjs – Why hover not work after using padding top

I use padding top 120px. After using padding top hover not work properly. Why is this happening?Here is my code: 'use client'; // eslint-disable-next-line no-unused-vars import React, { useState } from 'react'; // eslint-disable-next-line no-unused-vars import {BsChevronCompactLeft , BsChevronCompactRight} from…

VIEW QUESTION
Back To Top
Search