Testimonial slider responsiveness problem

how to make flex child take the full width of the available screen and other childs take the same width as first one but they should overflows. I want the output to be like the attached image. but in responsiveness it is creating problem, how to solve it? check video https://codepen.io/hamzacodepen951/pen/LYvPPzj
No description
5 Replies
Mannix
Mannix2y ago
curiousmissfox
You WANT overflow??
Hamza Naeem
Hamza NaeemOP2y ago
Yes this is what I want What you have done?
Mannix
Mannix2y ago
all i've done is changing
.testimonial-wrapper {
display: inline-flex;
}

.testimonial-client {
width: 78vw;
}
.testimonial-wrapper {
display: inline-flex;
}

.testimonial-client {
width: 78vw;
}
to this
.testimonial-wrapper {
display: flex;
}

.testimonial-client {
width: 100%;
flex-shrink:0
}
.testimonial-wrapper {
display: flex;
}

.testimonial-client {
width: 100%;
flex-shrink:0
}
Hamza Naeem
Hamza NaeemOP2y ago
Thank you so much

Did you find this page helpful?