move object up css code example
Example 1: how to change image position in css
.image{
position: absolute;
right:300px;
}
Example 2: how to move an image up in css
.image{
position: relative;
top: -125px;
}
.image{
position: absolute;
right:300px;
}
.image{
position: relative;
top: -125px;
}