skip to Main Content

Html – I am trying to use Box-Shadow property it is working fine but when i use the display as flex it will not appear

HTML CODE --- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gallary Project</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="wrapper"> <div class="container"> <h1>My gallary</h1> <div class="gallary"> <figure class="card"> <img src="ig/assets/image1.jpg" alt=""> <figcaption>Image1</figcaption> </figure> <figure class="card"> <img src="ig/assets/image2.jpeg"…

VIEW QUESTION
Back To Top
Search