moving the position of a div element code example
Example 1: how to move an image up in css
.image{
position: relative;
top: -125px;
}
Example 2: adjusting y pos of element in css
top: 150px;
.image{
position: relative;
top: -125px;
}
top: 150px;