Visible colors of overlapping cells

I am using the cells on top of each other, but it seems that I happen to see the border lines if I set an equal value for 2 cells on top of each other, could it be the radius that creates this problem?

InkedImmagine 2021-12-12 173326

Hello @xonetit,

Thanks for posting in!

On my Brave browser, this is what I am seeing:

Your issue is coming from this custom CSS:

.path_dx_bottom {
    -webkit-clip-path: polygon(0% 0%,80% 0%,100% 0%,80% 100%,0% 100%);
    clip-path: polygon(0% 100%,0% 0%,80% 0%,100% 100%,100% 100%);
}

You may need to update it and add negative X and Y value something like:

.path_dx_bottom {
    -webkit-clip-path: polygon(-2% 100%,0% -10%,80% 0%,100% 100%,100% 100%);
    clip-path: polygon(-2% 100%,0% -10%,80% 0%,100% 100%,100% 100%);
}

Kindly let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.