[Solved] How do I move my div upp with css to center it [closed]

[ad_1]

Try using top / margin-top properties of css.

#circles{
    display: inline-block; 
    float: left; 
    width: 70%; 
    top: someValue px;
}

or

 #circles{
    display: inline-block; 
    float: left; 
    width: 70%; 
    margin-top: someValue px;
}

[ad_2]

solved How do I move my div upp with css to center it [closed]