We have four children in one parent. And I want to make effect which you see on the picture.
<article class="parent">
<figure class="child">
<img src="img/example.jpg" alt="" />
<figcaption">
<p>description</p>
</figcaption>
</figure>
<figure class="child">
<img src="img/example.jpg" alt="" />
<figcaption">
<p>description</p>
</figcaption>
</figure>
<figure class="child">
<img src="img/example.jpg" alt="" />
<figcaption">
<p>description</p>
</figcaption>
</figure>
<figure class="child">
<img src="img/example.jpg" alt="" />
<figcaption">
<p>description</p>
</figcaption>
</figure>
</article>
The child have one constant parameter width: 300px;
But we cannot edit the html (+div).
We can use only CSS for that thing. Is that possible?
My English is poor sry :)