Created
November 11, 2025 15:51
-
-
Save Kcko/488738ab0cd8fd9ee10d118901a0cd95 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://jsbin.com/qonusuciru/6/edit?html,css,output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --container-width: 700px; | |
| --columns: 12; | |
| --gap: 20px; | |
| --column-width: calc((var(--container-width) / var(--columns)) - var(--gap)); | |
| --breakpoint: 46em; | |
| } | |
| img { | |
| max-width: 100%; | |
| } | |
| .image-edge-grid { | |
| margin-bottom: 2rem; | |
| display: grid; | |
| grid-gap: var(--gap); | |
| grid-template-columns: minmax(1em, 1fr) repeat(var(--columns), minmax(0, var(--column-width))) minmax(1em, 1fr); | |
| max-width: initial; | |
| } | |
| .image-edge-grid__img { | |
| grid-column-start: 1; | |
| grid-column-end: 15; | |
| display: flex; | |
| align-items: center; | |
| @media (min-width: 46em) { | |
| grid-column-start: 1; | |
| grid-column-end: 8; | |
| } | |
| } | |
| .image-edge-grid__content { | |
| grid-column-start: 2; | |
| grid-column-end: 14; | |
| display: flex; | |
| align-items: center; | |
| background: plum; | |
| @media (min-width: 46em) { | |
| background: lime; | |
| grid-column-start: 8; | |
| grid-column-end: 14; | |
| } | |
| } | |
| .image-edge-grid[data-reversed] | |
| { | |
| .image-edge-grid__content | |
| { | |
| background: mistyrose; | |
| grid-column: 2/8; | |
| grid-row: 1; | |
| } | |
| .image-edge-grid__img | |
| { | |
| grid-column: 8/15; | |
| grid-row: 1 | |
| } | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div class="image-edge-grid"> | |
| <div class="image-edge-grid__img"><img src="https://images.unsplash.com/photo-1591696154658-eef027c4c62a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80"></div> | |
| <div class="image-edge-grid__content"> | |
| <div class="text-block"> | |
| <h2>Lorem Ipsum Dolor Sit</h2> | |
| <p> | |
| Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam. | |
| </p> | |
| <p> | |
| At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="image-edge-grid" data-reversed> | |
| <div class="image-edge-grid__img"><img src="https://images.unsplash.com/photo-1591696154658-eef027c4c62a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80"></div> | |
| <div class="image-edge-grid__content"> | |
| <div class="text-block"> | |
| <h2>Lorem Ipsum Dolor Sit</h2> | |
| <p> | |
| Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam. | |
| </p> | |
| <p> | |
| At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment