Answers for "how to move an image to the top in css"

CSS
2

how to move an image up in css

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

image on top of image css

.image1 {
  position: relative;
  top: 0;
  left: 0;
  border: 1px red solid;
}
.image2 {
  position: absolute;
  top: 30px;
  left: 30px;
  border: 1px green solid;
}
Posted by: Guest on September-14-2020

Code answers related to "how to move an image to the top in css"

Browse Popular Code Answers by Language