+ 1
How to move a image in html
image how to move it to left or right ? how i can i move the image where ever in layout i want?? 🤔🤔
6 Respostas
+ 2
If you want to corner the image to one side then you can use the float property in CSS
+ 2
maybe something like flexbox or cssgrid layout
+ 1
i hate float
+ 1
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout
This link for flexbox might help
+ 1
tnx and also this video is pretty good
https://youtu.be/jV8B24rSN5o
+ 1
Just add display property set to flex in any stly and see the magic
Display:flex;
And there is a another one also to reverse the position row wise or column wise
Display-direction:row-riverse;
Or column-reverse;
How cool it is, check it out