Html – Changing from CSS grid layout to flexbox
I was tasked with changing given code that was using CSS grid to one using CSS flexbox layout. This was the given HTML structure: <div class="listing-grid"> <div class="listing"> <img class="listing-image" src="something.jpg" alt="something"> <div class="listing-details"> <h3>Item 1</h3> </div> <div class="listing-price"> <p>Price:…