What is the differences between Float vs Display:inline? by default everything goes to left side in every browser. then 2 display inlined elements should be worked same lik
I always remember what floating is by remembering the original
which acts very similar to float:left
. Basically float, floats the image to the left and wraps the text or other content around it. Without float it would display as a piece of text.
Float works similar to other document tools where you can have the text wrap around the image (or HTML element).