rmcg.dev/projects/FrontendMentor/newbie/recipe-page/assets/css/utilities.css

12 lines
231 B
CSS

/* https://gomakethings.com/how-to-break-an-image-out-of-its-parent-container-with-css/ */
.full-width {
left: 50%;
margin-left: -50vw;
margin-right: -50vw;
max-width: 100vw;
position: relative;
right: 50%;
width: 100vw;
}