<body>
<img src="https://seoandmma.files.wordpress.com/2019/08/fam-1.jpg">
<p>Text text text...</p>
<img src="https://seoandmma.files.wordpress.com/2019/08/fam-1.jpg">
<p>Text text text...</p>
</body>
body {
display: grid;
padding: 2rem;
grid-template-columns: 300px 1fr;
gap: 1rem;
align-items: center;
max-width: 800px;
margin: 0 auto;
font: 500 100%/1.5 system-ui;
}
img {
max-width: 100%;
height: auto;
}
@media (max-width: 650px) {
body {
display: block;
font-size: 80%;
}
p {
position: relative;
margin: -3rem 0 2rem 1rem;
padding: 1rem;
background: rgba(white, 0.8);
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.