DEV Community

Discussion on: Curved Timeline in CSS

Collapse
 
mario_im profile image
Mario

fix:

.card:nth-child(odd)::before {
left: 0px;
top: -5px;
bottom: -4.5px;
border-width: 5px 0 5px 5px;
border-radius: 50px 0 0 50px;
}

Collapse
 
animald profile image
animald

Ah, it is only now that I realise that the original example was using 4.5px.

Jatin, what was the reason for this? What is your default browser?

Thread Thread
 
j471n profile image
Jatin Sharma

Well, I am using Edge browser, It was only a pixel out in the mobile devices so I fixed it with the @media queries. you can see the updated version now. Thanks to all of you guys for pointing it out :)

Thread Thread
 
mario_im profile image
Mario

Chrome :)