Question:
why wont anything move
(https://replit.com/@MICHAELKIWANUKA/test)
code snippet
h1 {
left: 200px;
}
img {
left: 300px;
position: static;
}
Question:
why wont anything move
(https://replit.com/@MICHAELKIWANUKA/test)
code snippet
h1 {
left: 200px;
}
img {
left: 300px;
position: static;
}
Heya! could you set the position to absolute?
tried that didnt work
Position needs to be fixed
or absolute
. Or you can just use margins
h1 {
margin-left: 200px;
}