This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Dara Bahrami
about 9 years

my orbit isn't circle. it is a big square. why??

i just did everything and it says that its right but the orbits isn’t circle.are your all like me????

PLZ ANSWER

Answer 54f8c11d86f552d63900057d

1 vote

Permalink

The div element is box-like by default. To make it a circle, add this property: value pair {border-radius: 50%; } as one of the CSS declarations for that element’s CSS selector, e.g. for the sun, like so:

#sun {
    ...............
    ...............
    border-radius: 50%;    
}
points
Submitted by kabir k (biz man)
about 9 years

Answer 54c01c2795e37858190026b9

0 votes

Permalink

the div class you use is always a square. However, in the code is a few things to display it as a circle. It should show a dotted circle. If not try copy and pasting the code directly.

points
Submitted by Yi Liu
about 9 years