Boidurja Talukdar
Boidurja Talukdar

Reputation: 696

How to make a responsive design using flex?

This is my site URL

In Inspect mode mobile view when I click on the last circle of heel, two circles appear on top of it. I want those two circles to appear at the center.

If I remove justify-content: space-between from the css, then those two circles appear at the center. However the first circle appears only partially in mobile view while scrolling horizontally. How to solve this problem?

Thanks

Upvotes: -1

Views: 49

Answers (2)

kiran
kiran

Reputation: 693

Add Justify Center to the div after .container height in style and mark it important

enter image description here

position: relative;
bottom: 215px;
justify-content: center !important;

Upvotes: 1

user14093271
user14093271

Reputation:

After digging for quite a while i found the solution.

just give the container of the circles a padding left of 100px in the media query.

code :-

.row.align-center.justify-center {
padding-left: 100px;
}

Upvotes: 1

Related Questions