im trying to move the image to the right can someone help pls
https://codepen.io/FgStine34/pen/wvoeYdZ
This should help
i have looked at that and i dont thing im doing it right could you look at the code for me
assuming you are talking about your .background_stretch
class, that is not an element with a background-image
property applied. Instead this is just an <img>
element.
To move any element around, one can choose from either changing the element margin
, or position
e.g.
.move_this_to_right {
position:relative;
right:0;
}