Creating CSS circles connected by lines to middle main circle
I need to create a page something like this. The blue circle is the main circle and green circles should place around the main circle. The green circles count is random (around 0 - 10). All green circles are connected to blue circle with a line. I know to draw circle in CSS. I need to know, How to place green circles around the blue circle How to connect green circles to the blue circle Is it possible to do with CSS. If not what is the way? Thank you. What you will need is a position: relative; container with child elements positioned absolute Demo Demo 2 (Using transform ) Explanation: What