Answers for "css move image op"

CSS
11

how to move an image up in css

.image{
  position: relative; 
  top: -125px;
}
Posted by: Guest on October-17-2020
9

how to change image position in css

.image{
  position: absolute;
  right:300px;
}
Posted by: Guest on September-07-2020

Browse Popular Code Answers by Language