About the mobile rem custom dots.

Mobile rem custom dots that do not look round on some phones;

some Android machines and fruit machines have this problem.

related codes

/ /

<ul>
    <li class="">;</li>
</ul>

ul{ 
    list-type-style:none;
    li{
        position:relative;
        &::after{
            content:"";
            display:inline-block;
            width:.1rem;
            height:.1rem;
            border-radius:50%;
            background-color:-sharp666;
        }
    }
}

* * since there is no Android screenshot, here is a screenshot of ios. The dot is not a circle

on some Android computers.
Sep.16,2021

set border-radius:100%; can you


I didn't find any solution on the Internet, so I tried to solve it myself

I hope it will be useful to you
https://blog.csdn.net/qq_3106.

Menu