how to position arrows
https://codepen.io/etrbbr/pen/ZYzowKB
Hello everyone! Could you please tell me how to position the arrows in the center of my div (image)?
2 Replies
You can replace the ".ciferblat" selector in css with this
But i don't really see any reason for targeting id's in your CSS, i would recommend giving your "arrows" a class instead. optionally they can keep the id but also give them a class.
You should avoid targeting ids in CSS due to the high specificity level, it does not mean you should never do it, but if you do it, you should have a really good reason for it, and i just don't see the reason here in this case.
thanks mate