I am wondering if its possible to create something like this using slick slider?
+-------+ +-------+
| | | |
| +-------+ |
+----| |----+
| |
+-------+
The problem comes with setting margin between the slides. I found How add spaces between Slick carousel item which explains you can modify margin this way:
/* the slides */
.slick-slide {
margin: 0 27px;
}
/* the parent */
.slick-list {
margin: 0 -27px;
}
However, I am not able to change margin into a negative value, so that the 3rd element would be on top of two instead of just between them.
Did anyone happen to do this or knows any reference link that had something similar?