简体   繁体   中英

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

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;
}

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

在此处输入图片说明

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM